ci: improve perf image build time by pre-fetching correct rust version

This avoids that we have to pull rustc and friends twice (once via
image, once when actually executing it).
pull/24376/head
Marco Neumann 2021-12-07 09:26:03 +01:00
parent dca1dd1d14
commit 43569c11c2
1 changed files with 3 additions and 0 deletions

View File

@ -346,7 +346,10 @@ jobs:
command: |
COMMIT_SHA=$(git rev-parse --short HEAD)
RUST_VERSION=$(sed -E -ne 's/channel = "(.*)"/\1/p' rust-toolchain.toml)
docker buildx build \
--build-arg RUST_VERSION="$RUST_VERSION" \
--build-arg RUSTFLAGS="-C target-feature=+avx2" \
--progress plain \
--tag quay.io/influxdb/iox:"$COMMIT_SHA" \