aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.d/custom-runners
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2022-02-25 17:20:12 +0000
committerAlex Bennée <alex.bennee@linaro.org>2022-02-28 16:42:12 +0000
commitcc44a16002530dcd2bb9739e7e603ec41c0a7ffb (patch)
tree2c4c4ae2fdd11277c547910766abb076253f318c /.gitlab-ci.d/custom-runners
parent9c3b52245570a17b876d7eecbf7714cc5959ed0f (diff)
downloadqemu-cc44a16002530dcd2bb9739e7e603ec41c0a7ffb.zip
qemu-cc44a16002530dcd2bb9739e7e603ec41c0a7ffb.tar.gz
qemu-cc44a16002530dcd2bb9739e7e603ec41c0a7ffb.tar.bz2
gitlab: add a new aarch32 custom runner definition
Although running on aarch64 hardware we can still target 32bit builds with a cross compiler and run the resulting binaries. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20220225172021.3493923-10-alex.bennee@linaro.org>
Diffstat (limited to '.gitlab-ci.d/custom-runners')
-rw-r--r--.gitlab-ci.d/custom-runners/ubuntu-20.40-aarch32.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.gitlab-ci.d/custom-runners/ubuntu-20.40-aarch32.yml b/.gitlab-ci.d/custom-runners/ubuntu-20.40-aarch32.yml
new file mode 100644
index 0000000..9c589bc
--- /dev/null
+++ b/.gitlab-ci.d/custom-runners/ubuntu-20.40-aarch32.yml
@@ -0,0 +1,23 @@
+# All ubuntu-20.04 jobs should run successfully in an environment
+# setup by the scripts/ci/setup/qemu/build-environment.yml task
+# "Install basic packages to build QEMU on Ubuntu 18.04/20.04"
+
+ubuntu-20.04-aarch32-all:
+ needs: []
+ stage: build
+ tags:
+ - ubuntu_20.04
+ - aarch32
+ rules:
+ - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
+ when: manual
+ allow_failure: true
+ - if: "$AARCH32_RUNNER_AVAILABLE"
+ when: manual
+ allow_failure: true
+ script:
+ - mkdir build
+ - cd build
+ - ../configure --cross-prefix=arm-linux-gnueabihf-
+ - make --output-sync -j`nproc`
+ - make --output-sync -j`nproc` check V=1