1centos-stream-8-x86_64:
2 allow_failure: true
3 needs: []
4 stage: build
5 tags:
6 - centos_stream_8
7 - x86_64
8 rules:
9 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
10 - if: "$CENTOS_STREAM_8_x86_64_RUNNER_AVAILABLE"
11 artifacts:
12   name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
13   when: on_failure
14   expire_in: 7 days
15   paths:
16     - build/tests/results/latest/results.xml
17     - build/tests/results/latest/test-results
18   reports:
19     junit: build/tests/results/latest/results.xml
20 before_script:
21 - JOBS=$(expr $(nproc) + 1)
22 script:
23 - mkdir build
24 - cd build
25 - ../scripts/ci/org.centos/stream/8/x86_64/configure
26 - make -j"$JOBS"
27 - make NINJA=":" check
28 - ../scripts/ci/org.centos/stream/8/x86_64/test-avocado
29