60bec83e8a
To ease maintenance, add the custom-runners/ directory and split custom-runners.yml in 3 files, all included by the current custom-runners.yml: - ubuntu-18.04-s390x.yml - ubuntu-20.04-aarch64.yml - centos-stream-8-x86_64.yml Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20211115095608.2436223-1-philmd@redhat.com> Reviewed-by: Willian Rampazzo <willianr@redhat.com> Message-Id: <20211115142915.3797652-7-alex.bennee@linaro.org>
29 lines
745 B
YAML
29 lines
745 B
YAML
centos-stream-8-x86_64:
|
|
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"
|
|
artifacts:
|
|
name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
|
|
when: on_failure
|
|
expire_in: 7 days
|
|
paths:
|
|
- build/tests/results/latest/results.xml
|
|
- build/tests/results/latest/test-results
|
|
reports:
|
|
junit: build/tests/results/latest/results.xml
|
|
before_script:
|
|
- JOBS=$(expr $(nproc) + 1)
|
|
script:
|
|
- mkdir build
|
|
- cd build
|
|
- ../scripts/ci/org.centos/stream/8/x86_64/configure
|
|
- make -j"$JOBS"
|
|
- make NINJA=":" check
|
|
- ../scripts/ci/org.centos/stream/8/x86_64/test-avocado
|