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