2024-04-26 18:39:37 +03:00
|
|
|
# All ubuntu-22.04 jobs should run successfully in an environment
|
2024-06-03 20:53:22 +03:00
|
|
|
# setup by the scripts/ci/setup/ubuntu/build-environment.yml task
|
2024-04-26 18:39:37 +03:00
|
|
|
# "Install basic packages to build QEMU on Ubuntu 22.04"
|
2021-11-15 17:29:15 +03:00
|
|
|
|
2024-05-06 23:13:04 +03:00
|
|
|
ubuntu-22.04-s390x-all-linux:
|
2023-02-28 22:06:35 +03:00
|
|
|
extends: .custom_runner_template
|
2021-11-15 17:29:15 +03:00
|
|
|
needs: []
|
|
|
|
stage: build
|
|
|
|
tags:
|
2024-04-26 18:39:37 +03:00
|
|
|
- ubuntu_22.04
|
2021-11-15 17:29:15 +03:00
|
|
|
- s390x
|
|
|
|
rules:
|
|
|
|
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
|
|
|
|
- if: "$S390X_RUNNER_AVAILABLE"
|
|
|
|
script:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2024-05-06 23:21:36 +03:00
|
|
|
- ../configure --enable-debug --disable-system --disable-tools --disable-docs
|
2022-07-25 17:05:09 +03:00
|
|
|
|| { cat config.log meson-logs/meson-log.txt; exit 1; }
|
2021-11-15 17:29:15 +03:00
|
|
|
- make --output-sync -j`nproc`
|
2023-01-24 21:01:09 +03:00
|
|
|
- make --output-sync check-tcg
|
2022-12-21 12:04:07 +03:00
|
|
|
- make --output-sync -j`nproc` check
|
2021-11-15 17:29:15 +03:00
|
|
|
|
2024-05-06 23:21:36 +03:00
|
|
|
ubuntu-22.04-s390x-all-system:
|
2023-02-28 22:06:35 +03:00
|
|
|
extends: .custom_runner_template
|
2021-11-15 17:29:15 +03:00
|
|
|
needs: []
|
|
|
|
stage: build
|
|
|
|
tags:
|
2024-04-26 18:39:37 +03:00
|
|
|
- ubuntu_22.04
|
2021-11-15 17:29:15 +03:00
|
|
|
- s390x
|
2022-06-06 21:24:36 +03:00
|
|
|
timeout: 75m
|
2021-11-15 17:29:15 +03:00
|
|
|
rules:
|
|
|
|
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
|
|
|
|
- if: "$S390X_RUNNER_AVAILABLE"
|
|
|
|
script:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2024-05-06 23:21:36 +03:00
|
|
|
- ../configure --disable-user
|
2022-07-25 17:05:09 +03:00
|
|
|
|| { cat config.log meson-logs/meson-log.txt; exit 1; }
|
2021-11-15 17:29:15 +03:00
|
|
|
- make --output-sync -j`nproc`
|
2022-12-21 12:04:07 +03:00
|
|
|
- make --output-sync -j`nproc` check
|
2021-11-15 17:29:15 +03:00
|
|
|
|
2024-04-26 18:39:37 +03:00
|
|
|
ubuntu-22.04-s390x-alldbg:
|
2023-02-28 22:06:35 +03:00
|
|
|
extends: .custom_runner_template
|
2021-11-15 17:29:15 +03:00
|
|
|
needs: []
|
|
|
|
stage: build
|
|
|
|
tags:
|
2024-04-26 18:39:37 +03:00
|
|
|
- ubuntu_22.04
|
2021-11-15 17:29:15 +03:00
|
|
|
- s390x
|
|
|
|
rules:
|
|
|
|
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
|
|
|
|
when: manual
|
|
|
|
allow_failure: true
|
|
|
|
- if: "$S390X_RUNNER_AVAILABLE"
|
|
|
|
when: manual
|
|
|
|
allow_failure: true
|
|
|
|
script:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2024-05-06 22:52:46 +03:00
|
|
|
- ../configure --enable-debug
|
2022-07-25 17:05:09 +03:00
|
|
|
|| { cat config.log meson-logs/meson-log.txt; exit 1; }
|
2021-11-15 17:29:15 +03:00
|
|
|
- make clean
|
|
|
|
- make --output-sync -j`nproc`
|
2022-12-21 12:04:07 +03:00
|
|
|
- make --output-sync -j`nproc` check
|
2021-11-15 17:29:15 +03:00
|
|
|
|
2024-04-26 18:39:37 +03:00
|
|
|
ubuntu-22.04-s390x-clang:
|
2023-02-28 22:06:35 +03:00
|
|
|
extends: .custom_runner_template
|
2021-11-15 17:29:15 +03:00
|
|
|
needs: []
|
|
|
|
stage: build
|
|
|
|
tags:
|
2024-04-26 18:39:37 +03:00
|
|
|
- ubuntu_22.04
|
2021-11-15 17:29:15 +03:00
|
|
|
- s390x
|
|
|
|
rules:
|
|
|
|
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
|
|
|
|
when: manual
|
|
|
|
allow_failure: true
|
|
|
|
- if: "$S390X_RUNNER_AVAILABLE"
|
|
|
|
when: manual
|
|
|
|
allow_failure: true
|
|
|
|
script:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2024-08-13 12:52:15 +03:00
|
|
|
- ../configure --cc=clang --cxx=clang++ --enable-ubsan
|
2022-07-25 17:05:09 +03:00
|
|
|
|| { cat config.log meson-logs/meson-log.txt; exit 1; }
|
2021-11-15 17:29:15 +03:00
|
|
|
- make --output-sync -j`nproc`
|
2022-12-21 12:04:07 +03:00
|
|
|
- make --output-sync -j`nproc` check
|
2021-11-15 17:29:15 +03:00
|
|
|
|
2024-04-26 18:39:37 +03:00
|
|
|
ubuntu-22.04-s390x-tci:
|
2021-11-15 17:29:15 +03:00
|
|
|
needs: []
|
|
|
|
stage: build
|
|
|
|
tags:
|
2024-04-26 18:39:37 +03:00
|
|
|
- ubuntu_22.04
|
2021-11-15 17:29:15 +03:00
|
|
|
- s390x
|
|
|
|
rules:
|
|
|
|
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
|
|
|
|
when: manual
|
|
|
|
allow_failure: true
|
|
|
|
- if: "$S390X_RUNNER_AVAILABLE"
|
|
|
|
when: manual
|
|
|
|
allow_failure: true
|
|
|
|
script:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2024-05-06 22:52:46 +03:00
|
|
|
- ../configure --enable-tcg-interpreter
|
2022-07-25 17:05:09 +03:00
|
|
|
|| { cat config.log meson-logs/meson-log.txt; exit 1; }
|
2021-11-15 17:29:15 +03:00
|
|
|
- make --output-sync -j`nproc`
|
|
|
|
|
2024-04-26 18:39:37 +03:00
|
|
|
ubuntu-22.04-s390x-notcg:
|
2023-02-28 22:06:35 +03:00
|
|
|
extends: .custom_runner_template
|
2021-11-15 17:29:15 +03:00
|
|
|
needs: []
|
|
|
|
stage: build
|
|
|
|
tags:
|
2024-04-26 18:39:37 +03:00
|
|
|
- ubuntu_22.04
|
2021-11-15 17:29:15 +03:00
|
|
|
- s390x
|
|
|
|
rules:
|
|
|
|
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
|
|
|
|
when: manual
|
|
|
|
allow_failure: true
|
|
|
|
- if: "$S390X_RUNNER_AVAILABLE"
|
|
|
|
when: manual
|
|
|
|
allow_failure: true
|
|
|
|
script:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2024-05-06 22:52:46 +03:00
|
|
|
- ../configure --disable-tcg
|
2022-07-25 17:05:09 +03:00
|
|
|
|| { cat config.log meson-logs/meson-log.txt; exit 1; }
|
2021-11-15 17:29:15 +03:00
|
|
|
- make --output-sync -j`nproc`
|
2022-12-21 12:04:07 +03:00
|
|
|
- make --output-sync -j`nproc` check
|