We only have one job here so no point using a template but we might as well update the JOBS calculation and use our fancy section markers.
Signed-off-by: Alex Bennée <[email protected]> --- .../custom-runners/ubuntu-24.04-aarch32.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.d/custom-runners/ubuntu-24.04-aarch32.yml b/.gitlab-ci.d/custom-runners/ubuntu-24.04-aarch32.yml index 75029c9187e..3e7fdc8fa98 100644 --- a/.gitlab-ci.d/custom-runners/ubuntu-24.04-aarch32.yml +++ b/.gitlab-ci.d/custom-runners/ubuntu-24.04-aarch32.yml @@ -16,10 +16,21 @@ ubuntu-24.04-aarch32-all: - if: "$AARCH32_RUNNER_AVAILABLE" when: manual allow_failure: true + before_script: + - source scripts/ci/gitlab-ci-section + - section_start setup "Pre-script setup" + - JOBS=$(expr $(nproc) - 4) + - section_end setup script: - mkdir build - cd build + - section_start configure "Running configure" - ../configure --cross-prefix=arm-linux-gnueabihf- || { 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 + - section_end configure + - section_start build "Building QEMU" + - make --output-sync -j"$JOBS" + - section_end build + - section_start test "Running tests" + - make --output-sync -j"$JOBS" check + - section_end test -- 2.47.3
