diff options
author | Kevin Daudt <kdaudt@alpinelinux.org> | 2021-12-18 20:10:12 +0100 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2021-12-18 20:10:12 +0100 |
commit | f49600d38b0ef49401b1a250ff8e060105780329 (patch) | |
tree | 03fda059748aeab52bd77520591d539b0694774d | |
parent | 0f50f9ff294858e84495cb4f80a13322faedbe73 (diff) | |
download | apk-tools-f49600d38b0ef49401b1a250ff8e060105780329.tar.gz apk-tools-f49600d38b0ef49401b1a250ff8e060105780329.tar.bz2 apk-tools-f49600d38b0ef49401b1a250ff8e060105780329.tar.xz apk-tools-f49600d38b0ef49401b1a250ff8e060105780329.zip |
ci: use arch-tagged images for static build
For 32-bits arches, we use 64-bit arches in 32-bit mode. Docker by
default wants to pull the image for the native arch, so unless we take
care, the binaries will be built for the wrong arch.
Use the arch tagged images we build to make sure we get the correct image.
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8fee921..a917887 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,7 +45,7 @@ test:debian: build-static: stage: build - image: alpinelinux/build-base + image: alpinelinux/build-base:latest-$ARCH script: - abuild-apk add make gcc git musl-dev openssl-dev linux-headers zlib-dev lua5.3-dev lua5.3-lzlib zlib-static openssl-libs-static - make -j$(nproc) static |