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.master
parent
ad438a95c5
commit
695a746aa0
|
@ -25,7 +25,7 @@ make -j2 install
|
||||||
if [ "${BUILD_REASON}" != "PullRequest" ]; then
|
if [ "${BUILD_REASON}" != "PullRequest" ]; then
|
||||||
ARTIFACTSDIR="$BUILDDIR/artifacts"
|
ARTIFACTSDIR="$BUILDDIR/artifacts"
|
||||||
mkdir "$ARTIFACTSDIR"
|
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)"
|
TARBALL="$(ls $ARTIFACTSDIR)"
|
||||||
mv "$DOWNLOADSECUREFILE_SECUREFILEPATH" "$HOME/.s3cfg"
|
mv "$DOWNLOADSECUREFILE_SECUREFILEPATH" "$HOME/.s3cfg"
|
||||||
s3cmd put -P --add-header="cache-control: public, max-age=31536000, immutable" "$ARTIFACTSDIR/$TARBALL" s3://ziglang.org/builds/
|
s3cmd put -P --add-header="cache-control: public, max-age=31536000, immutable" "$ARTIFACTSDIR/$TARBALL" s3://ziglang.org/builds/
|
||||||
|
|
Loading…
Reference in New Issue