[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 19/22] gitlab: add ubuntu-22.04-aarch64-without-defaults
From: |
Alex Bennée |
Subject: |
[PATCH 19/22] gitlab: add ubuntu-22.04-aarch64-without-defaults |
Date: |
Wed, 3 May 2023 10:12:41 +0100 |
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.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
.../custom-runners/ubuntu-22.04-aarch64.yml | 22 +++++++++++++++++++
1 file changed, 22 insertions(+)
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 57303c12e1..f8489dd3fc 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: []
--
2.39.2
- Re: [PATCH 06/22] hw/arm: Select VIRTIO_BLK for virt machine, (continued)
- [PATCH 11/22] hw/alpha: make E1000_PCI a hard dependency for clipper, Alex Bennée, 2023/05/03
- [PATCH 18/22] scripts/ci: clean-up the 20.04/22.04 confusion in ansible, Alex Bennée, 2023/05/03
- [PATCH 14/22] hw/loongarch: add VIRTIO as a dependency for LOONGARCH_VIRT, Alex Bennée, 2023/05/03
- [PATCH 15/22] hw/sh4: make RTL8139 a hard dependency for RD2, Alex Bennée, 2023/05/03
- [PATCH 12/22] hw/hppa: add TULIP as a dependency for HPPA_B160L, Alex Bennée, 2023/05/03
- [PATCH 19/22] gitlab: add ubuntu-22.04-aarch64-without-defaults,
Alex Bennée <=
- [PATCH 17/22] hw/xtensa: add VIRTIO as dependencies for XTENSA_VIRT, Alex Bennée, 2023/05/03
- [PATCH 13/22] hw/sparc: add a TCX dependency for SUN4M machines, Alex Bennée, 2023/05/03
- [PATCH 21/22] tests/avocado: use http for mipsdistros.mips.com, Alex Bennée, 2023/05/03
- [PATCH 16/22] hw/mips: add VIRTIO and USB dependencies for LOONGSON3V, Alex Bennée, 2023/05/03