Thomas Huth | 66fdb03 | 2024-06-07 08:51:47 +0200 | [diff] [blame] | 1 | image: fedora:40 |
Thomas Huth | d81f73b | 2019-05-27 13:28:53 +0200 | [diff] [blame] | 2 | |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 3 | before_script: |
Thomas Huth | d81f73b | 2019-05-27 13:28:53 +0200 | [diff] [blame] | 4 | - dnf update -y |
| 5 | - dnf install -y make python |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 6 | |
Nicholas Piggin | a68956b | 2024-06-05 18:09:41 +1000 | [diff] [blame] | 7 | # By default artifacts are only saved on success. This uses when:always |
| 8 | # because the test logs are important to help diagnose failures. |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 9 | .intree_template: |
| 10 | artifacts: |
Nicholas Piggin | a68956b | 2024-06-05 18:09:41 +1000 | [diff] [blame] | 11 | when: always |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 12 | expire_in: 2 days |
Paolo Bonzini | 963a271 | 2024-06-03 11:26:06 +0200 | [diff] [blame] | 13 | when: always |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 14 | paths: |
| 15 | - logs |
| 16 | |
| 17 | .outoftree_template: |
| 18 | artifacts: |
Nicholas Piggin | a68956b | 2024-06-05 18:09:41 +1000 | [diff] [blame] | 19 | when: always |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 20 | expire_in: 2 days |
Paolo Bonzini | 963a271 | 2024-06-03 11:26:06 +0200 | [diff] [blame] | 21 | when: always |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 22 | paths: |
| 23 | - build/logs |
| 24 | |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 25 | build-aarch64: |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 26 | extends: .intree_template |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 27 | script: |
Thomas Huth | d81f73b | 2019-05-27 13:28:53 +0200 | [diff] [blame] | 28 | - dnf install -y qemu-system-aarch64 gcc-aarch64-linux-gnu |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 29 | - ./configure --arch=aarch64 --cross-prefix=aarch64-linux-gnu- |
| 30 | - make -j2 |
Thomas Huth | c3df00e | 2020-07-01 12:06:15 +0200 | [diff] [blame] | 31 | - ACCEL=tcg MAX_SMP=8 ./run_tests.sh |
Thomas Huth | 14eb048 | 2022-12-06 11:40:03 +0100 | [diff] [blame] | 32 | cache |
| 33 | debug-bp |
| 34 | debug-sstep |
| 35 | debug-wp |
| 36 | gicv2-active |
| 37 | gicv2-ipi |
| 38 | gicv2-mmio |
| 39 | gicv3-active |
| 40 | gicv3-ipi |
| 41 | its-introspection |
| 42 | its-trigger |
| 43 | pci-test |
| 44 | pmu-cycle-counter |
| 45 | pmu-event-counter-config |
| 46 | pmu-sw-incr |
Thomas Huth | 14eb048 | 2022-12-06 11:40:03 +0100 | [diff] [blame] | 47 | selftest-setup |
| 48 | selftest-smp |
| 49 | selftest-vectors-kernel |
| 50 | selftest-vectors-user |
| 51 | timer |
| 52 | | tee results.txt |
Andrew Jones | dd79728 | 2024-03-05 17:46:42 +0100 | [diff] [blame] | 53 | - grep -q PASS results.txt && ! grep -q FAIL results.txt |
| 54 | |
| 55 | build-aarch64-efi: |
| 56 | extends: .intree_template |
| 57 | script: |
| 58 | - dnf install -y qemu-system-aarch64 gcc-aarch64-linux-gnu edk2-aarch64 |
| 59 | - ./configure --arch=aarch64 --cross-prefix=aarch64-linux-gnu- --enable-efi --enable-efi-direct |
| 60 | - make -j2 |
| 61 | - ACCEL=tcg MAX_SMP=8 ./run_tests.sh |
| 62 | selftest-setup |
| 63 | selftest-smp |
| 64 | selftest-vectors-kernel |
| 65 | selftest-vectors-user |
| 66 | | tee results.txt |
| 67 | - grep -q PASS results.txt && ! grep -q FAIL results.txt |
| 68 | |
| 69 | build-aarch64-efi-acpi: |
| 70 | extends: .intree_template |
| 71 | script: |
| 72 | - dnf install -y qemu-system-aarch64 gcc-aarch64-linux-gnu edk2-aarch64 |
| 73 | - ./configure --arch=aarch64 --cross-prefix=aarch64-linux-gnu- --enable-efi --enable-efi-direct |
| 74 | - make -j2 |
| 75 | - EFI_USE_ACPI=y ACCEL=tcg MAX_SMP=8 ./run_tests.sh |
| 76 | selftest-setup |
| 77 | selftest-smp |
| 78 | selftest-vectors-kernel |
| 79 | selftest-vectors-user |
| 80 | | tee results.txt |
| 81 | - grep -q PASS results.txt && ! grep -q FAIL results.txt |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 82 | |
| 83 | build-arm: |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 84 | extends: .outoftree_template |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 85 | script: |
Andrew Jones | efd13c3 | 2019-11-28 15:24:10 +0100 | [diff] [blame] | 86 | - dnf install -y qemu-system-arm gcc-arm-linux-gnu |
Thomas Huth | 13fc88a | 2020-07-31 11:41:39 +0200 | [diff] [blame] | 87 | - mkdir build |
| 88 | - cd build |
| 89 | - ../configure --arch=arm --cross-prefix=arm-linux-gnu- |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 90 | - make -j2 |
Thomas Huth | c3df00e | 2020-07-01 12:06:15 +0200 | [diff] [blame] | 91 | - ACCEL=tcg MAX_SMP=8 ./run_tests.sh |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 92 | selftest-setup selftest-vectors-kernel selftest-vectors-user selftest-smp |
Thomas Huth | c3df00e | 2020-07-01 12:06:15 +0200 | [diff] [blame] | 93 | pci-test pmu-cycle-counter gicv2-ipi gicv2-mmio gicv3-ipi gicv2-active |
Andrew Jones | 892e40f | 2023-06-23 17:32:26 +0200 | [diff] [blame] | 94 | gicv3-active |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 95 | | tee results.txt |
Andrew Jones | dd79728 | 2024-03-05 17:46:42 +0100 | [diff] [blame] | 96 | - grep -q PASS results.txt && ! grep -q FAIL results.txt |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 97 | |
| 98 | build-ppc64be: |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 99 | extends: .outoftree_template |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 100 | script: |
Nicholas Piggin | 3ccb19a | 2024-04-05 18:35:07 +1000 | [diff] [blame] | 101 | - dnf install -y qemu-system-ppc gcc-powerpc64-linux-gnu nmap-ncat |
Thomas Huth | 13fc88a | 2020-07-31 11:41:39 +0200 | [diff] [blame] | 102 | - mkdir build |
| 103 | - cd build |
| 104 | - ../configure --arch=ppc64 --endian=big --cross-prefix=powerpc64-linux-gnu- |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 105 | - make -j2 |
| 106 | - ACCEL=tcg ./run_tests.sh |
Nicholas Piggin | 3ccb19a | 2024-04-05 18:35:07 +1000 | [diff] [blame] | 107 | selftest-setup |
| 108 | selftest-migration |
| 109 | selftest-migration-skip |
| 110 | spapr_hcall |
| 111 | rtas-get-time-of-day |
| 112 | rtas-get-time-of-day-base |
| 113 | rtas-set-time-of-day |
| 114 | emulator |
| 115 | | tee results.txt |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 116 | - if grep -q FAIL results.txt ; then exit 1 ; fi |
| 117 | |
| 118 | build-ppc64le: |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 119 | extends: .intree_template |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 120 | script: |
Nicholas Piggin | 3ccb19a | 2024-04-05 18:35:07 +1000 | [diff] [blame] | 121 | - dnf install -y qemu-system-ppc gcc-powerpc64-linux-gnu nmap-ncat |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 122 | - ./configure --arch=ppc64 --endian=little --cross-prefix=powerpc64-linux-gnu- |
| 123 | - make -j2 |
| 124 | - ACCEL=tcg ./run_tests.sh |
Nicholas Piggin | 3ccb19a | 2024-04-05 18:35:07 +1000 | [diff] [blame] | 125 | selftest-setup |
| 126 | selftest-migration |
| 127 | selftest-migration-skip |
| 128 | spapr_hcall |
| 129 | rtas-get-time-of-day |
| 130 | rtas-get-time-of-day-base |
| 131 | rtas-set-time-of-day |
| 132 | emulator |
| 133 | | tee results.txt |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 134 | - if grep -q FAIL results.txt ; then exit 1 ; fi |
| 135 | |
Andrew Jones | bf9496e | 2023-10-08 10:53:52 +0200 | [diff] [blame] | 136 | # build-riscv32: |
| 137 | # Fedora doesn't package a riscv32 compiler for QEMU. Oh, well. |
| 138 | |
| 139 | # Select 'rv64' with PROCESSOR_OVERRIDE in case QEMU is too old to have 'max' |
| 140 | build-riscv64: |
| 141 | extends: .intree_template |
| 142 | script: |
| 143 | - dnf install -y qemu-system-riscv gcc-riscv64-linux-gnu |
| 144 | - ./configure --arch=riscv64 --cross-prefix=riscv64-linux-gnu- |
| 145 | - make -j2 |
| 146 | - printf "FOO=foo\nBAR=bar\nBAZ=baz\nMVENDORID=0\n" >test-env |
| 147 | - PROCESSOR_OVERRIDE=rv64 ACCEL=tcg KVM_UNIT_TESTS_ENV=test-env ./run_tests.sh |
| 148 | selftest |
| 149 | sbi |
| 150 | | tee results.txt |
| 151 | - grep -q PASS results.txt && ! grep -q FAIL results.txt |
| 152 | |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 153 | build-s390x: |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 154 | extends: .outoftree_template |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 155 | script: |
Thomas Huth | d81f73b | 2019-05-27 13:28:53 +0200 | [diff] [blame] | 156 | - dnf install -y qemu-system-s390x gcc-s390x-linux-gnu |
Thomas Huth | 1a84232 | 2021-07-16 12:52:19 +0200 | [diff] [blame] | 157 | - mkdir build |
| 158 | - cd build |
| 159 | - ../configure --arch=s390x --cross-prefix=s390x-linux-gnu- |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 160 | - make -j2 |
Thomas Huth | d81f73b | 2019-05-27 13:28:53 +0200 | [diff] [blame] | 161 | - ACCEL=tcg ./run_tests.sh |
Thomas Huth | 14eb048 | 2022-12-06 11:40:03 +0100 | [diff] [blame] | 162 | adtl-status-no-vec-no-gs-tcg |
| 163 | adtl-status-tcg |
| 164 | cpumodel |
| 165 | css |
| 166 | diag10 |
| 167 | diag288 |
| 168 | diag308 |
| 169 | edat |
| 170 | emulator |
| 171 | epsw |
| 172 | exittime |
| 173 | firq-linear-cpu-ids-tcg |
| 174 | firq-nonlinear-cpu-ids-tcg |
| 175 | iep |
| 176 | intercept |
| 177 | mvpg |
| 178 | sck |
| 179 | sclp-1g |
| 180 | sclp-3g |
| 181 | selftest-setup |
| 182 | sieve |
| 183 | smp |
| 184 | stsi |
| 185 | tprot |
| 186 | vector |
| 187 | | tee results.txt |
Thomas Huth | d81f73b | 2019-05-27 13:28:53 +0200 | [diff] [blame] | 188 | - if grep -q FAIL results.txt ; then exit 1 ; fi |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 189 | |
| 190 | build-x86_64: |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 191 | extends: .intree_template |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 192 | script: |
Thomas Huth | d81f73b | 2019-05-27 13:28:53 +0200 | [diff] [blame] | 193 | - dnf install -y qemu-system-x86 gcc |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 194 | - ./configure --arch=x86_64 |
| 195 | - make -j2 |
| 196 | - ACCEL=tcg ./run_tests.sh |
Thomas Huth | 14eb048 | 2022-12-06 11:40:03 +0100 | [diff] [blame] | 197 | eventinj |
| 198 | intel_iommu |
| 199 | ioapic-split |
| 200 | memory |
| 201 | pks |
| 202 | pku |
| 203 | rdpru |
| 204 | realmode |
| 205 | rmap_chain |
| 206 | setjmp |
| 207 | sieve |
| 208 | smap |
| 209 | smptest |
| 210 | smptest3 |
| 211 | syscall |
| 212 | tsc |
| 213 | umip |
| 214 | vmexit_cpuid |
| 215 | vmexit_cr0_wp |
| 216 | vmexit_cr4_pge |
| 217 | vmexit_inl_pmtimer |
| 218 | vmexit_ipi |
| 219 | vmexit_ipi_halt |
| 220 | vmexit_mov_from_cr8 |
| 221 | vmexit_mov_to_cr8 |
| 222 | vmexit_ple_round_robin |
| 223 | vmexit_tscdeadline |
| 224 | vmexit_tscdeadline_immed |
Thomas Huth | 14eb048 | 2022-12-06 11:40:03 +0100 | [diff] [blame] | 225 | | tee results.txt |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 226 | - if grep -q FAIL results.txt ; then exit 1 ; fi |
| 227 | |
| 228 | build-i386: |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 229 | extends: .outoftree_template |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 230 | script: |
Thomas Huth | d81f73b | 2019-05-27 13:28:53 +0200 | [diff] [blame] | 231 | - dnf install -y qemu-system-x86 gcc |
Thomas Huth | 13fc88a | 2020-07-31 11:41:39 +0200 | [diff] [blame] | 232 | - mkdir build |
| 233 | - cd build |
| 234 | - ../configure --arch=i386 |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 235 | - make -j2 |
| 236 | - ACCEL=tcg ./run_tests.sh |
Thomas Huth | 14eb048 | 2022-12-06 11:40:03 +0100 | [diff] [blame] | 237 | cmpxchg8b |
| 238 | eventinj |
| 239 | realmode |
| 240 | setjmp |
| 241 | sieve |
| 242 | smap |
| 243 | smptest |
| 244 | smptest3 |
| 245 | taskswitch |
| 246 | tsc |
| 247 | umip |
| 248 | vmexit_cpuid |
| 249 | vmexit_cr0_wp |
| 250 | vmexit_cr4_pge |
| 251 | vmexit_inl_pmtimer |
| 252 | vmexit_ipi |
| 253 | vmexit_ipi_halt |
| 254 | vmexit_mov_from_cr8 |
| 255 | vmexit_mov_to_cr8 |
| 256 | vmexit_ple_round_robin |
| 257 | vmexit_tscdeadline |
| 258 | vmexit_tscdeadline_immed |
| 259 | | tee results.txt |
Thomas Huth | dd09573 | 2019-02-28 18:11:03 +0100 | [diff] [blame] | 260 | - if grep -q FAIL results.txt ; then exit 1 ; fi |
Thomas Huth | 417ecf4 | 2020-05-13 11:54:46 +0200 | [diff] [blame] | 261 | |
| 262 | build-clang: |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 263 | extends: .intree_template |
Thomas Huth | 417ecf4 | 2020-05-13 11:54:46 +0200 | [diff] [blame] | 264 | script: |
| 265 | - dnf install -y qemu-system-x86 clang |
| 266 | - ./configure --arch=x86_64 --cc=clang |
| 267 | - make -j2 |
| 268 | - ACCEL=tcg ./run_tests.sh |
Thomas Huth | 14eb048 | 2022-12-06 11:40:03 +0100 | [diff] [blame] | 269 | eventinj |
| 270 | intel_iommu |
| 271 | ioapic-split |
| 272 | memory |
| 273 | pks |
| 274 | pku |
| 275 | rdpru |
Thomas Huth | 14eb048 | 2022-12-06 11:40:03 +0100 | [diff] [blame] | 276 | rmap_chain |
| 277 | setjmp |
| 278 | sieve |
| 279 | smap |
| 280 | smptest |
| 281 | smptest3 |
| 282 | syscall |
| 283 | tsc |
| 284 | umip |
| 285 | vmexit_cpuid |
| 286 | vmexit_cr0_wp |
| 287 | vmexit_cr4_pge |
| 288 | vmexit_inl_pmtimer |
| 289 | vmexit_ipi |
| 290 | vmexit_ipi_halt |
| 291 | vmexit_mov_from_cr8 |
| 292 | vmexit_mov_to_cr8 |
| 293 | vmexit_ple_round_robin |
| 294 | vmexit_tscdeadline |
| 295 | vmexit_tscdeadline_immed |
Thomas Huth | 14eb048 | 2022-12-06 11:40:03 +0100 | [diff] [blame] | 296 | | tee results.txt |
Thomas Huth | 417ecf4 | 2020-05-13 11:54:46 +0200 | [diff] [blame] | 297 | - grep -q PASS results.txt && ! grep -q FAIL results.txt |
Thomas Huth | 0079fe8 | 2020-07-31 11:15:48 +0200 | [diff] [blame] | 298 | |
| 299 | build-centos7: |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 300 | extends: .outoftree_template |
Thomas Huth | 0079fe8 | 2020-07-31 11:15:48 +0200 | [diff] [blame] | 301 | image: centos:7 |
| 302 | before_script: |
| 303 | - yum update -y |
| 304 | - yum install -y make python qemu-kvm gcc |
| 305 | script: |
| 306 | - mkdir build |
| 307 | - cd build |
| 308 | - ../configure --arch=x86_64 --disable-pretty-print-stacks |
| 309 | - make -j2 |
| 310 | - ACCEL=tcg ./run_tests.sh |
Sean Christopherson | 88f0bb1 | 2021-04-21 20:05:03 -0700 | [diff] [blame] | 311 | vmexit_cpuid vmexit_mov_from_cr8 vmexit_mov_to_cr8 vmexit_inl_pmtimer |
Thomas Huth | 0079fe8 | 2020-07-31 11:15:48 +0200 | [diff] [blame] | 312 | vmexit_ple_round_robin vmexit_tscdeadline vmexit_tscdeadline_immed port80 |
| 313 | setjmp sieve tsc rmap_chain umip |
| 314 | | tee results.txt |
| 315 | - grep -q PASS results.txt && ! grep -q FAIL results.txt |
Thomas Huth | 1b849d7 | 2024-06-07 08:36:16 +0200 | [diff] [blame] | 316 | - make -s check-kerneldoc 2>&1 | tee docwarnings.txt |
| 317 | - test -z `cat docwarnings.txt` |
Thomas Huth | 990955e | 2021-01-15 23:30:17 +0100 | [diff] [blame] | 318 | |
| 319 | # Cirrus-CI provides containers with macOS and Linux with KVM enabled, |
| 320 | # so we can test some scenarios there that are not possible with the |
| 321 | # gitlab-CI shared runners. We use the "cirrus-run" container from the |
| 322 | # libvirt project to start the jobs. See the following URL for more |
| 323 | # information how to set up your environment to use these containers: |
| 324 | # |
| 325 | # https://gitlab.com/libvirt/libvirt/-/blob/v7.0.0/ci/README.rst |
| 326 | # |
| 327 | .cirrus_build_job_template: &cirrus_build_job_definition |
Thomas Huth | 6630792 | 2024-04-15 15:03:21 +0200 | [diff] [blame] | 328 | image: registry.gitlab.com/libvirt/libvirt-ci/cirrus-run:latest |
Thomas Huth | 990955e | 2021-01-15 23:30:17 +0100 | [diff] [blame] | 329 | before_script: |
| 330 | - sed -e "s|[@]CI_REPOSITORY_URL@|$CI_REPOSITORY_URL|g" |
| 331 | -e "s|[@]CI_COMMIT_REF_NAME@|$CI_COMMIT_REF_NAME|g" |
| 332 | -e "s|[@]CI_COMMIT_SHA@|$CI_COMMIT_SHA|g" |
| 333 | < ci/$CI_JOB_NAME.yml > ci/_$CI_JOB_NAME.yml |
| 334 | script: |
| 335 | - cirrus-run -v --show-build-log always ci/_$CI_JOB_NAME.yml |
| 336 | only: |
| 337 | variables: |
| 338 | - $CIRRUS_GITHUB_REPO |
| 339 | - $CIRRUS_API_TOKEN |
| 340 | |
| 341 | cirrus-ci-fedora: |
| 342 | <<: *cirrus_build_job_definition |
| 343 | |
| 344 | cirrus-ci-macos-i386: |
| 345 | <<: *cirrus_build_job_definition |
| 346 | |
| 347 | cirrus-ci-macos-x86-64: |
| 348 | <<: *cirrus_build_job_definition |
Marcelo Bandeira Condotta | 21eb966 | 2021-02-08 12:02:27 -0300 | [diff] [blame] | 349 | |
| 350 | s390x-kvm: |
Thomas Huth | bd2daad | 2023-04-03 11:32:55 +0200 | [diff] [blame] | 351 | extends: .intree_template |
Marcelo Bandeira Condotta | 21eb966 | 2021-02-08 12:02:27 -0300 | [diff] [blame] | 352 | before_script: [] |
| 353 | tags: |
| 354 | - s390x-z15-vm |
| 355 | script: |
| 356 | - ./configure --arch=s390x |
| 357 | - make -j$(nproc) |
Thomas Huth | 64a9b49 | 2021-02-09 09:18:30 +0100 | [diff] [blame] | 358 | - ACCEL=kvm ./run_tests.sh |
Nicholas Piggin | 3ccb19a | 2024-04-05 18:35:07 +1000 | [diff] [blame] | 359 | selftest-setup |
Nicholas Piggin | 3ccb19a | 2024-04-05 18:35:07 +1000 | [diff] [blame] | 360 | selftest-migration-skip |
| 361 | cmm |
| 362 | cpumodel |
| 363 | css |
| 364 | diag10 |
| 365 | diag288 |
| 366 | diag308 |
| 367 | emulator |
Nina Schoetterl-Glausch | 9a5a73a | 2023-03-17 12:23:39 +0100 | [diff] [blame] | 368 | execute |
Nicholas Piggin | 3ccb19a | 2024-04-05 18:35:07 +1000 | [diff] [blame] | 369 | gs |
| 370 | iep |
| 371 | intercept |
| 372 | migration |
| 373 | migration-memory |
| 374 | migration-sck |
| 375 | migration-skey-parallel |
| 376 | migration-skey-sequential |
| 377 | pfmf |
| 378 | sclp-1g |
| 379 | sclp-3g |
| 380 | sie |
| 381 | sieve |
| 382 | skrf |
| 383 | sthyi |
| 384 | stsi |
| 385 | vector |
Thomas Huth | 64a9b49 | 2021-02-09 09:18:30 +0100 | [diff] [blame] | 386 | | tee results.txt |
Marcelo Bandeira Condotta | 21eb966 | 2021-02-08 12:02:27 -0300 | [diff] [blame] | 387 | - grep -q PASS results.txt && ! grep -q FAIL results.txt |
| 388 | only: |
| 389 | variables: |
| 390 | - $S390X_Z15_RUNNER_AVAILABLE |