diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-10-24 20:45:54 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-10-24 20:46:07 -0400 |
| commit | 695a746aa09ac68e0ece8def2d5c7ce6d71f3000 (patch) | |
| tree | 207a4af27653506ff29d234d203a80a7792c74da /ci/azure/linux_script | |
| parent | ad438a95c528c4a2013e3e7fb99ea9a260143eb3 (diff) | |
| download | zig-695a746aa09ac68e0ece8def2d5c7ce6d71f3000.tar.gz zig-695a746aa09ac68e0ece8def2d5c7ce6d71f3000.zip | |
ci: use x86_64 namespaced docker image
I took a risk that docker had implemented namespacing with regards to
architectures correctly, but of course they didn't. So the CI docker
image for x86_64 was clobbered by an aarch64 image with the same name.
Now we're doing arch namespaces with the tag name, so here's the x86_64
one.
Diffstat (limited to 'ci/azure/linux_script')
| -rwxr-xr-x | ci/azure/linux_script | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/azure/linux_script b/ci/azure/linux_script index e12f16f15f..c4222f6ce4 100755 --- a/ci/azure/linux_script +++ b/ci/azure/linux_script @@ -25,7 +25,7 @@ make -j2 install if [ "${BUILD_REASON}" != "PullRequest" ]; then ARTIFACTSDIR="$BUILDDIR/artifacts" mkdir "$ARTIFACTSDIR" - docker run -i --mount type=bind,source="$ARTIFACTSDIR",target=/z ziglang/static-base:llvm9-1 -j2 $BUILD_SOURCEVERSION + docker run -i --mount type=bind,source="$ARTIFACTSDIR",target=/z ziglang/static-base:llvm9-x86_64 -j2 $BUILD_SOURCEVERSION TARBALL="$(ls $ARTIFACTSDIR)" mv "$DOWNLOADSECUREFILE_SECUREFILEPATH" "$HOME/.s3cfg" s3cmd put -P --add-header="cache-control: public, max-age=31536000, immutable" "$ARTIFACTSDIR/$TARBALL" s3://ziglang.org/builds/ |
