1# All centos-stream-8 jobs should run successfully in an environment
2# setup by the scripts/ci/setup/stream/8/build-environment.yml task
3# "Installation of extra packages to build QEMU"
4
5centos-stream-8-x86_64:
6 extends: .custom_runner_template
7 allow_failure: true
8 needs: []
9 stage: build
10 tags:
11 - centos_stream_8
12 - x86_64
13 rules:
14 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
15 - if: "$CENTOS_STREAM_8_x86_64_RUNNER_AVAILABLE"
16 before_script:
17 - JOBS=$(expr $(nproc) + 1)
18 script:
19 - mkdir build
20 - cd build
21 - ../scripts/ci/org.centos/stream/8/x86_64/configure
22   || { cat config.log meson-logs/meson-log.txt; exit 1; }
23 - make -j"$JOBS"
24 - make NINJA=":" check check-avocado
25