Lines Matching +full:build +full:- +full:tci
1 # All ubuntu-22.04 jobs should run successfully in an environment
2 # setup by the scripts/ci/setup/ubuntu/build-environment.yml task
3 # "Install basic packages to build QEMU on Ubuntu 22.04"
5 ubuntu-22.04-s390x-all-linux:
8 stage: build
10 - ubuntu_22.04
11 - s390x
13 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
14 - if: "$S390X_RUNNER_AVAILABLE"
16 - mkdir build
17 - cd build
18 - ../configure --enable-debug --disable-system --disable-tools --disable-docs
19 || { cat config.log meson-logs/meson-log.txt; exit 1; }
20 - make --output-sync -j`nproc`
21 - make --output-sync check-tcg
22 - make --output-sync -j`nproc` check
24 ubuntu-22.04-s390x-all-system:
27 stage: build
29 - ubuntu_22.04
30 - s390x
33 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
34 - if: "$S390X_RUNNER_AVAILABLE"
36 - mkdir build
37 - cd build
38 - ../configure --disable-user
39 || { cat config.log meson-logs/meson-log.txt; exit 1; }
40 - make --output-sync -j`nproc`
41 - make --output-sync -j`nproc` check
43 ubuntu-22.04-s390x-alldbg:
46 stage: build
48 - ubuntu_22.04
49 - s390x
51 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
54 - if: "$S390X_RUNNER_AVAILABLE"
58 - mkdir build
59 - cd build
60 - ../configure --enable-debug
61 || { cat config.log meson-logs/meson-log.txt; exit 1; }
62 - make clean
63 - make --output-sync -j`nproc`
64 - make --output-sync -j`nproc` check
66 ubuntu-22.04-s390x-clang:
69 stage: build
71 - ubuntu_22.04
72 - s390x
74 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
77 - if: "$S390X_RUNNER_AVAILABLE"
81 - mkdir build
82 - cd build
83 - ../configure --cc=clang --cxx=clang++ --enable-ubsan
84 || { cat config.log meson-logs/meson-log.txt; exit 1; }
85 - make --output-sync -j`nproc`
86 - make --output-sync -j`nproc` check
88 ubuntu-22.04-s390x-tci:
90 stage: build
92 - ubuntu_22.04
93 - s390x
95 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
98 - if: "$S390X_RUNNER_AVAILABLE"
102 - mkdir build
103 - cd build
104 - ../configure --enable-tcg-interpreter
105 || { cat config.log meson-logs/meson-log.txt; exit 1; }
106 - make --output-sync -j`nproc`
108 ubuntu-22.04-s390x-notcg:
111 stage: build
113 - ubuntu_22.04
114 - s390x
116 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
119 - if: "$S390X_RUNNER_AVAILABLE"
123 - mkdir build
124 - cd build
125 - ../configure --disable-tcg
126 || { cat config.log meson-logs/meson-log.txt; exit 1; }
127 - make --output-sync -j`nproc`
128 - make --output-sync -j`nproc` check