aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.d/custom-runners
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2023-05-02 16:59:17 +0100
committerAlex Bennée <alex.bennee@linaro.org>2023-05-10 16:01:37 +0100
commiteb8d413f7fafde8bc921b9a27a03fe7269f9c9c1 (patch)
tree4246efb623d0147c8e12618ca02d455613e68a1f /.gitlab-ci.d/custom-runners
parentc1924cde87e1bfeaf599b823a66f2ef09fd30e6a (diff)
downloadqemu-eb8d413f7fafde8bc921b9a27a03fe7269f9c9c1.zip
qemu-eb8d413f7fafde8bc921b9a27a03fe7269f9c9c1.tar.gz
qemu-eb8d413f7fafde8bc921b9a27a03fe7269f9c9c1.tar.bz2
gitlab: add ubuntu-22.04-aarch64-without-defaults
This does a very minimal build without default devices or features. I chose the aarch64 runner as it doesn't count towards CI minutes and is a fairly under-utilised builder. Message-Id: <20230503091244.1450613-20-alex.bennee@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to '.gitlab-ci.d/custom-runners')
-rw-r--r--.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml b/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
index 57303c1..f8489dd 100644
--- a/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
+++ b/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
@@ -45,6 +45,28 @@ ubuntu-22.04-aarch64-all:
- make --output-sync -j`nproc --ignore=40`
- make --output-sync -j`nproc --ignore=40` check
+ubuntu-22.04-aarch64-without-defaults:
+ extends: .custom_runner_template
+ needs: []
+ stage: build
+ tags:
+ - ubuntu_22.04
+ - aarch64
+ rules:
+ - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
+ when: manual
+ allow_failure: true
+ - if: "$AARCH64_RUNNER_AVAILABLE"
+ when: manual
+ allow_failure: true
+ script:
+ - mkdir build
+ - cd build
+ - ../configure --disable-user --without-default-devices --without-default-features
+ || { cat config.log meson-logs/meson-log.txt; exit 1; }
+ - make --output-sync -j`nproc --ignore=40`
+ - make --output-sync -j`nproc --ignore=40` check
+
ubuntu-22.04-aarch64-alldbg:
extends: .custom_runner_template
needs: []