2023-03-15 18:43:04 +01:00
|
|
|
# All centos-stream-8 jobs should run successfully in an environment
|
|
|
|
# setup by the scripts/ci/setup/stream/8/build-environment.yml task
|
|
|
|
# "Installation of extra packages to build QEMU"
|
|
|
|
|
2021-11-15 15:29:15 +01:00
|
|
|
centos-stream-8-x86_64:
|
2023-03-15 18:43:04 +01:00
|
|
|
extends: .custom_runner_template
|
2021-11-15 15:29:15 +01:00
|
|
|
allow_failure: true
|
|
|
|
needs: []
|
|
|
|
stage: build
|
|
|
|
tags:
|
|
|
|
- centos_stream_8
|
|
|
|
- x86_64
|
|
|
|
rules:
|
|
|
|
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
|
|
|
|
- if: "$CENTOS_STREAM_8_x86_64_RUNNER_AVAILABLE"
|
|
|
|
before_script:
|
|
|
|
- JOBS=$(expr $(nproc) + 1)
|
|
|
|
script:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- ../scripts/ci/org.centos/stream/8/x86_64/configure
|
2022-07-25 16:05:09 +02:00
|
|
|
|| { cat config.log meson-logs/meson-log.txt; exit 1; }
|
2021-11-15 15:29:15 +01:00
|
|
|
- make -j"$JOBS"
|
2023-03-15 18:43:04 +01:00
|
|
|
- make NINJA=":" check check-avocado
|