1# 2# stage-1 take only a few minutes and generally run on the cloud; they do not run the full test suite or external packages. 3# 4# stage-2 runs on MCS systems and may take 10 to 15 minutes. They run the full test suite but with limited mixture of external packages 5# 6# stage-3 runs on MCS systems and may take an hour or more. They run the full test suite and heavily test external packages, utilize valgrind etc 7# (not yet implemented) 8# 9# The stage-(n) tests are only started if all of the stage-(n-1) tests run without error 10# You can limit the testing by using the variable STAGE with value 1 or 2 11# 12# By default the test branch is merged to master before testing. (not yet implemented) 13# You can limite this by using the variable MERGETOMASTER with value 0 (not yet implemented) 14# 15 16stages: 17 - stage-1 18 - stage-2 19 - stage-3 20variables: 21 GIT_STRATEGY: fetch 22 GIT_CLEAN_FLAGS: -ffdxq 23 PETSC_OPTIONS: -check_pointer_intensity 0 -error_output_stdout -nox -nox_warning -malloc_dump 24 TIMEOUT: 600 25 26# 27# The most basic template that most tests will expand upon. In particular merge requests and branch pushes DO NOT trigger testing 28# 29 30.test: 31 only: 32 refs: 33# Set with CI/CD Shedules - New Schedule 34 - schedules 35# Set with CI/CD Pipelines - Run Pipeline 36 - web 37 dependencies: [] 38 39check-ci-settings: 40 extends: .test 41 stage: .pre 42 tags: 43 - check-ci-settings 44 script: 45 - lib/petsc/bin/maint/check-ci-settings.sh 46# 47# This provides the basic order of operations and options template for cloud based stage 1 tests. 48# Not all test-short need to follow this template but most will. 49# 50 51.stage-1: 52 extends: .test 53 stage: stage-1 54 image: jedbrown/mpich-ccache 55 tags: 56 - docker 57 before_script: 58 - date 59 - nproc 60 - lscpu 61 - export CCACHE_COMPILERCHECK=content CCACHE_DIR=$(pwd)/.ccache 62 - ccache --show-stats 63 - ccache --zero-stats 64 - echo ${CONFIG_OPTS} 65 script: 66 - ${PYTHON} ./configure --with-debugging=0 COPTFLAGS='-O -march=native' CXXOPTFLAGS='-O -march=native' FOPTFLAGS='-O -march=native' ${CONFIG_OPTS} 67 - make CFLAGS=-Werror CXXFLAGS=-Werror FFLAGS=-Werror 68 - make CFLAGS=-Werror CXXFLAGS=-Werror FFLAGS=-Werror allgtests-tap search="${TEST_SEARCH}" TIMEOUT=${TIMEOUT} 69 after_script: 70 - date 71 - CCACHE_DIR=$(pwd)/.ccache ccache --show-stats 72 artifacts: 73 reports: 74 junit: arch-*/tests/testresults.xml 75 name: "$CI_JOB_NAME" 76 when: always 77 paths: 78 - arch-*/lib/petsc/conf/*.log 79 - arch-*/tests/testresults.xml 80 - arch-*/tests/test_*_tap.log 81 - arch-*/tests/test_*_err.log 82 expire_in: 4 days 83 cache: 84 paths: 85 - .ccache/ 86 key: "${CI_JOB_NAME}" 87 88# 89# The following tests run on the cloud as part of stage-1. 90# 91 92mpich-cxx-py3: 93 extends: .stage-1 94 variables: 95 PYTHON: python3 96 CONFIG_OPTS: --with-mpi-dir=/usr/local --with-clanguage=cxx --with-fc=0 97 TEST_SEARCH: snes_tutorials-ex48% 98 99uni-complex-float-int64: 100 extends: .stage-1 101 variables: 102 PYTHON: python3 103 CONFIG_OPTS: --with-mpi=0 --with-scalar-type=complex --with-precision=single --with-64-bit-indices 104 TEST_SEARCH: ts_tutorials-ex11_adv_2d_quad_% 105 106c89-mlib-static-py2: 107 extends: .stage-1 108 image: jedbrown/mpich-ccache:python2 109 variables: 110 PYTHON: python2 111 CONFIG_OPTS: --with-mpi-dir=/usr/local --with-single-library=0 --with-shared-libraries=0 CFLAGS=-std=c89 112 TEST_SEARCH: snes_tutorials-ex19% 113 114checksource: 115 extends: .test 116 image: jedbrown/mpich-ccache 117 stage: stage-1 118 script: 119 - python3 ./configure --with-mpi=0 --with-fc=0 --with-cxx=0 120 - make checkbadSource SHELL=bash 121 - make check_output SHELL=bash 122 123# 124# This provides the basic order of operations and options template for stage-2,3 tests. 125# Not all stage-2,3 need to follow this template, but most will. 126# 127.stage-23: 128 extends: .test 129 script: 130 - printf "PATH:$PATH\n" 131 - printf "PETSC_OPTIONS:$PETSC_OPTIONS\n" 132 - printf "./config/examples/${TEST_ARCH}.py\n" 133 - cat ./config/examples/${TEST_ARCH}.py 134 - ./config/examples/${TEST_ARCH}.py 135 - make CFLAGS=${MAKE_CFLAGS} CXXFLAGS=${MAKE_CXXFLAGS} FFLAGS=${MAKE_FFLAGS} 136 - make CFLAGS=${MAKE_CFLAGS} CXXFLAGS=${MAKE_CXXFLAGS} FFLAGS=${MAKE_FFLAGS} check 137 - make updatedatafiles 138 - if [ -z ${DISABLE_TESTS+x} ]; then make CFLAGS=${MAKE_CFLAGS} CXXFLAGS=${MAKE_CXXFLAGS} FFLAGS=${MAKE_FFLAGS} cleantest allgtests-tap TIMEOUT=${TIMEOUT}; fi 139 artifacts: 140 reports: 141 junit: ${TEST_ARCH}/tests/testresults.xml 142 name: "$CI_JOB_NAME" 143 when: always 144 paths: 145 - ${TEST_ARCH}/lib/petsc/conf/*.log 146 - ${TEST_ARCH}/tests/testresults.xml 147 - ${TEST_ARCH}/tests/test_${TEST_ARCH}_tap.log 148 - ${TEST_ARCH}/tests/test_${TEST_ARCH}_err.log 149 expire_in: 4 days 150 variables: 151 OPENBLAS_NUM_THREADS: 1 152 153.stage-2: 154 extends: .stage-23 155 stage: stage-2 156 only: 157 variables: 158 - $STAGE != "1" 159 - $STAGE != "3" 160 161.stage-3: 162 extends: .stage-23 163 stage: stage-3 164 only: 165 variables: 166 - $STAGE != "1" 167 - $STAGE != "2" 168 169# 170# The following provide templates for various OSes for pre/post info 171# 172 173.linux_test_noflags: 174 before_script: 175 - date 176 - hostname 177 - grep PRETTY_NAME /etc/os-release 178 - nproc 179 - lscpu 180 - ccache --zero-stats 181 - if [ ! -z ${LOAD_MODULES+x} ]; then module load ${LOAD_MODULES}; module list; fi 182 after_script: 183 - date 184 - ccache --show-stats 185 186.linux_test: 187 extends: .linux_test_noflags 188 variables: 189 MAKE_CFLAGS: -Werror 190 MAKE_CXXFLAGS: -Werror 191 MAKE_FFLAGS: -Werror 192 193.freebsd_test: 194 variables: 195 MAKE_CFLAGS: -Werror 196 MAKE_CXXFLAGS: -Werror 197 MAKE_FFLAGS: -Werror 198 before_script: 199 - date 200 - hostname 201 - freebsd-version 202 - echo $(sysctl -n hw.ncpu) 203 - ccache --zero-stats 204 after_script: 205 - date 206 - ccache --show-stats 207 208.osx_test: 209 variables: 210 MAKE_CFLAGS: -Werror 211 MAKE_CXXFLAGS: -Werror 212 MAKE_FFLAGS: -Werror 213 before_script: 214 - date 215 - hostname 216 - sw_vers -productVersion 217 - echo $(sysctl -n hw.ncpu) 218 - ccache --zero-stats 219 after_script: 220 - date 221 - ccache --show-stats 222 223.opensolaris_test: 224 before_script: 225 - date 226 - hostname 227 - uname -a 228 - nproc 229 - isainfo -x 230 after_script: 231 - date 232 233.mswin_test: 234 before_script: 235 - date 236 - hostname 237 - uname -a 238 - nproc 239 after_script: 240 - date 241 242# 243# The following tests run as part of stage-2. 244# 245# The tags variable used in the tests below connects the particular test with the runners 246# listed on the left hand side of https://gitlab.com/petsc/petsc/-/settings/ci_cd. 247# For example the test linux-gcc-complex-opt any runner that has the tag 'name:pj02' 248# (in a blue box beneath it) 249# 250 251linux-gcc-complex-opt: 252 extends: 253 - .stage-2 254 - .linux_test 255 tags: 256 - linux-stage2 257 variables: 258 TEST_ARCH: arch-ci-linux-gcc-complex-opt 259 260linux-gcc-pkgs-opt: 261 extends: 262 - .stage-2 263 - .linux_test 264 tags: 265 - linux-stage2 266 variables: 267 TEST_ARCH: arch-ci-linux-gcc-pkgs-opt 268 269linux-gcc-quad-64idx-dbg: 270 extends: 271 - .stage-2 272 - .linux_test 273 tags: 274 - linux-stage2 275 variables: 276 TEST_ARCH: arch-ci-linux-gcc-quad-64idx-dbg 277 278linux-cuda-double: 279 extends: 280 - .stage-2 281 - .linux_test 282 tags: 283 - gpu:nvidia, os:linux, name:p1 284 variables: 285 PETSC_OPTIONS: -check_pointer_intensity 0 -error_output_stdout -nox -nox_warning -malloc_dump -cuda_initialize 0 286 TEST_ARCH: arch-ci-linux-cuda-double 287 288freebsd-c-single-opt: 289 extends: 290 - .stage-2 291 - .freebsd_test 292 tags: 293 - os:fbsd 294 variables: 295 TEST_ARCH: arch-ci-freebsd-c-single-opt 296 297freebsd-cxx-cmplx-64idx-dbg: 298 extends: 299 - .stage-2 300 - .freebsd_test 301 tags: 302 - os:fbsd 303 variables: 304 TEST_ARCH: arch-ci-freebsd-cxx-cmplx-64idx-dbg 305 306opensolaris-misc: 307 extends: 308 - .stage-3 309 - .opensolaris_test 310 tags: 311 - name:n-gage 312 variables: 313 TEST_ARCH: arch-ci-opensolaris-misc 314 315osx-cxx-pkgs-opt: 316 extends: 317 - .stage-3 318 - .osx_test 319 tags: 320 - os:macos 321 variables: 322 PETSC_OPTIONS: -check_pointer_intensity 0 -error_output_stdout -nox -nox_warning -malloc_dump -saws_port_auto_select -saws_port_auto_select_silent -vecscatter_mpi1 false -options_left false 323 TEST_ARCH: arch-ci-osx-cxx-pkgs-opt 324 325mswin-uni: 326 extends: 327 - .stage-2 328 - .mswin_test 329 tags: 330 - name:ps5-2 331 variables: 332 TEST_ARCH: arch-ci-mswin-uni 333 334mswin-gnu: 335 extends: 336 - .stage-2 337 - .mswin_test 338 tags: 339 - name:ps5-3 340 variables: 341 TEST_ARCH: arch-ci-mswin-gnu 342 MAKE_CFLAGS: -Werror 343 MAKE_CXXFLAGS: -Werror 344 MAKE_FFLAGS: -Werror 345 DISABLE_TESTS: 1 346 artifacts: 347 reports: 348 paths: 349 - arch-*/lib/petsc/conf/*.log 350 expire_in: 4 days 351 352# 353# The following tests run as part of stage-3. 354# 355 356mswin-intel-cxx-cmplx: 357 extends: 358 - .stage-3 359 - .mswin_test 360 tags: 361 - name:ps5 362 variables: 363 TEST_ARCH: arch-ci-mswin-intel-cxx-cmplx 364 365mswin-intel: 366 extends: 367 - .stage-3 368 - .mswin_test 369 tags: 370 - name:ps5 371 variables: 372 TEST_ARCH: arch-ci-mswin-intel 373 374mswin-opt-impi: 375 extends: 376 - .stage-3 377 - .mswin_test 378 tags: 379 - name:ps4 380 variables: 381 TEST_ARCH: arch-ci-mswin-opt-impi 382 383opensolaris-cmplx-pkgs-dbg: 384 extends: 385 - .stage-3 386 - .opensolaris_test 387 tags: 388 - name:n-gage 389 variables: 390 TEST_ARCH: arch-ci-opensolaris-cmplx-pkgs-dbg 391 392opensolaris-pkgs-opt: 393 extends: 394 - .stage-3 395 - .opensolaris_test 396 tags: 397 - name:n-gage 398 variables: 399 TEST_ARCH: arch-ci-opensolaris-pkgs-opt 400 401freebsd-pkgs-opt: 402 extends: 403 - .stage-3 404 - .freebsd_test 405 tags: 406 - os:fbsd 407 variables: 408 TEST_ARCH: arch-ci-freebsd-pkgs-opt 409 410freebsd-cxx-cmplx-pkgs-dbg: 411 extends: 412 - .stage-3 413 - .freebsd_test 414 tags: 415 - os:fbsd 416 variables: 417 TEST_ARCH: arch-ci-freebsd-cxx-cmplx-pkgs-dbg 418 419freebsd-cxx-pkgs-opt: 420 extends: 421 - .stage-3 422 - .freebsd_test 423 tags: 424 - os:fbsd 425 variables: 426 PETSC_OPTIONS: -check_pointer_intensity 0 -error_output_stdout -nox -nox_warning -malloc_dump -saws_port_auto_select -saws_port_auto_select_silent -vecscatter_mpi1 false -options_left false 427 TEST_ARCH: arch-ci-freebsd-cxx-pkgs-opt 428 429osx-cxx-cmplx-pkgs-dbg: 430 extends: 431 - .stage-3 432 - .osx_test 433 tags: 434 - os:macos 435 variables: 436 TEST_ARCH: arch-ci-osx-cxx-cmplx-pkgs-dbg 437 438osx-dbg: 439 extends: 440 - .stage-3 441 - .osx_test 442 tags: 443 - os:macos 444 variables: 445 TEST_ARCH: arch-ci-osx-dbg 446 447osx-xsdk-opt: 448 extends: 449 - .stage-3 450 - .osx_test 451 tags: 452 - os:macos 453 variables: 454 TEST_ARCH: arch-ci-osx-xsdk-opt 455 456linux-cmplx-gcov: 457 extends: 458 - .stage-3 459 - .linux_test 460 tags: 461 - mcs-nfs 462 variables: 463 PETSC_OPTIONS: -check_pointer_intensity 0 -error_output_stdout -nox -nox_warning -malloc_dump -vecscatter_mpi1 false -options_left false 464 TEST_ARCH: arch-ci-linux-cmplx-gcov 465 after_script: 466 - make gcov 467 artifacts: 468 when: always 469 paths: 470 - ${TEST_ARCH}/lib/petsc/conf/*.log 471 - ${TEST_ARCH}/tests/testresults.xml 472 - ${TEST_ARCH}/tests/test_${TEST_ARCH}_tap.log 473 - ${TEST_ARCH}/tests/test_${TEST_ARCH}_err.log 474 - ${TEST_ARCH}/gcov.tar.gz 475 expire_in: 4 days 476 477 478linux-cmplx-single: 479 extends: 480 - .stage-3 481 - .linux_test 482 tags: 483 - name:si 484 variables: 485 TEST_ARCH: arch-ci-linux-cmplx-single 486 487linux-without-fc: 488 extends: 489 - .stage-3 490 - .linux_test 491 tags: 492 - name:si 493 variables: 494 TEST_ARCH: arch-ci-linux-without-fc 495 496linux-clang-avx: 497 extends: 498 - .stage-3 499 - .linux_test 500 tags: 501 - name:isdp001 502 variables: 503 TEST_ARCH: arch-ci-linux-clang-avx 504 505linux-gcc-cxx-avx2: 506 extends: 507 - .stage-3 508 - .linux_test 509 tags: 510 - name:isdp001 511 variables: 512 TEST_ARCH: arch-ci-linux-gcc-cxx-avx2 513 514linux-knl: 515 extends: 516 - .stage-3 517 - .linux_test 518 tags: 519 - name:isdp001 520 variables: 521 TEST_ARCH: arch-ci-linux-knl 522 523linux-c-exodus-dbg: 524 extends: 525 - .stage-3 526 - .linux_test 527 tags: 528 - gpu:nvidia, os:linux 529 variables: 530 PETSC_OPTIONS: -check_pointer_intensity 0 -error_output_stdout -nox -nox_warning -malloc_dump -cuda_initialize 0 531 TEST_ARCH: arch-ci-linux-c-exodus-dbg 532 533linux-cuda-single-cxx: 534 extends: 535 - .stage-3 536 - .linux_test 537 tags: 538 - gpu:nvidia, os:linux 539 variables: 540 PETSC_OPTIONS: -check_pointer_intensity 0 -error_output_stdout -nox -nox_warning -malloc_dump -cuda_initialize 0 541 TEST_ARCH: arch-ci-linux-cuda-single-cxx 542 543linux-viennacl: 544 extends: 545 - .stage-3 546 - .linux_test 547 tags: 548 - gpu:nvidia, os:linux, name:frog 549 variables: 550 PETSC_OPTIONS: -check_pointer_intensity 0 -error_output_stdout -nox -nox_warning -malloc_dump -cuda_initialize 0 551 TEST_ARCH: arch-ci-linux-viennacl 552 553linux-opt-misc: 554 extends: 555 - .stage-3 556 - .linux_test 557 tags: 558 - gce-nfs 559 variables: 560 TEST_ARCH: arch-ci-linux-opt-misc 561 562linux-pkgs-cxx-mlib: 563 extends: 564 - .stage-3 565 - .linux_test 566 tags: 567 - name:pj02 568 variables: 569 PETSC_OPTIONS: -check_pointer_intensity 0 -error_output_stdout -nox -nox_warning -malloc_dump -saws_port_auto_select -saws_port_auto_select_silent 570 TEST_ARCH: arch-ci-linux-pkgs-cxx-mlib 571 572linux-cxx-cmplx-pkgs-64idx: 573 extends: 574 - .stage-3 575 - .linux_test 576 tags: 577 - name:pj01 578 variables: 579 TEST_ARCH: arch-ci-linux-cxx-cmplx-pkgs-64idx 580 581linux-pkgs-dbg-ftn-interfaces: 582 extends: 583 - .stage-3 584 - .linux_test 585 tags: 586 - name:pj02 587 variables: 588 TEST_ARCH: arch-ci-linux-pkgs-dbg-ftn-interfaces 589 590linux-analyzer: 591 extends: 592 - .stage-3 593 - .linux_test 594 tags: 595 - mcs-nfs 596 variables: 597 TEST_ARCH: arch-ci-linux-analyzer 598 599linux-gcc-ifc-cmplx: 600 extends: 601 - .stage-3 602 - .linux_test 603 tags: 604 - mcs-nfs 605 variables: 606 TEST_ARCH: arch-ci-linux-gcc-ifc-cmplx 607 608linux-gcov: 609 extends: 610 - .stage-3 611 - .linux_test 612 tags: 613 - mcs-nfs 614 variables: 615 TEST_ARCH: arch-ci-linux-gcov 616 after_script: 617 - make gcov 618 artifacts: 619 when: always 620 paths: 621 - ${TEST_ARCH}/lib/petsc/conf/*.log 622 - ${TEST_ARCH}/tests/testresults.xml 623 - ${TEST_ARCH}/tests/test_${TEST_ARCH}_tap.log 624 - ${TEST_ARCH}/tests/test_${TEST_ARCH}_err.log 625 - ${TEST_ARCH}/gcov.tar.gz 626 expire_in: 4 days 627 628 629linux-ILP64: 630 extends: 631 - .stage-3 632 - .linux_test 633 tags: 634 - gce-nfs 635 variables: 636 TEST_ARCH: arch-ci-linux-ILP64 637 638linux-matlab-ilp64-gcov: 639 extends: 640 - .stage-3 641 - .linux_test 642 tags: 643 - mcs-nfs 644 variables: 645 TEST_ARCH: arch-ci-linux-matlab-ilp64-gcov 646 after_script: 647 - make gcov 648 artifacts: 649 when: always 650 paths: 651 - ${TEST_ARCH}/lib/petsc/conf/*.log 652 - ${TEST_ARCH}/tests/testresults.xml 653 - ${TEST_ARCH}/tests/test_${TEST_ARCH}_tap.log 654 - ${TEST_ARCH}/tests/test_${TEST_ARCH}_err.log 655 - ${TEST_ARCH}/gcov.tar.gz 656 expire_in: 4 days 657 658 659linux-opt-cxx-quad: 660 extends: 661 - .stage-3 662 - .linux_test 663 tags: 664 - mcs-nfs 665 variables: 666 TEST_ARCH: arch-ci-linux-opt-cxx-quad 667 668linux-pgi: 669 extends: 670 - .stage-3 671 - .linux_test_noflags 672 tags: 673 - mcs-nfs,name:petsc 674 variables: 675 TEST_ARCH: arch-ci-linux-pgi 676 677linux-pkgs-64idx: 678 extends: 679 - .stage-3 680 - .linux_test 681 tags: 682 - mcs-nfs 683 variables: 684 TEST_ARCH: arch-ci-linux-pkgs-64idx 685 686linux-pkgs-gcov: 687 extends: 688 - .stage-3 689 - .linux_test 690 tags: 691 - mcs-nfs 692 variables: 693 TEST_ARCH: arch-ci-linux-pkgs-gcov 694 after_script: 695 - make gcov 696 artifacts: 697 when: always 698 paths: 699 - ${TEST_ARCH}/lib/petsc/conf/*.log 700 - ${TEST_ARCH}/tests/testresults.xml 701 - ${TEST_ARCH}/tests/test_${TEST_ARCH}_tap.log 702 - ${TEST_ARCH}/tests/test_${TEST_ARCH}_err.log 703 - ${TEST_ARCH}/gcov.tar.gz 704 expire_in: 4 days 705 706linux-pkgs-opt: 707 extends: 708 - .stage-3 709 - .linux_test 710 tags: 711 - gce-nfs 712 variables: 713 PETSC_OPTIONS: -check_pointer_intensity 0 -error_output_stdout -nox -nox_warning -malloc_dump -saws_port_auto_select -saws_port_auto_select_silent 714 TEST_ARCH: arch-ci-linux-pkgs-opt 715 716linux-pkgs-valgrind: 717 extends: 718 - .stage-3 719 - .linux_test 720 tags: 721 - valgrind 722 variables: 723 TEST_ARCH: arch-ci-linux-pkgs-valgrind 724 TIMEOUT: 7200 725 726linux-xsdk-dbg: 727 extends: 728 - .stage-3 729 - .linux_test 730 tags: 731 - mcs-nfs 732 variables: 733 TEST_ARCH: arch-ci-linux-xsdk-dbg 734 735linux-intel: 736 extends: 737 - .stage-3 738 - .linux_test_noflags 739 tags: 740 - gce-nfs 741 variables: 742 TEST_ARCH: arch-ci-linux-intel 743 LOAD_MODULES: intel-mkl/19.5 intel/19.0 744 745linux-intel-cmplx: 746 extends: 747 - .stage-3 748 - .linux_test_noflags 749 tags: 750 - gce-nfs 751 variables: 752 TEST_ARCH: arch-ci-linux-intel-cmplx 753 LOAD_MODULES: intel-mkl/19.5 intel/19.0 754 755linux-nagfor: 756 extends: 757 - .stage-3 758 - .linux_test 759 tags: 760 - mcs-nfs 761 variables: 762 TEST_ARCH: arch-ci-linux-nagfor 763 MAKE_FFLAGS: -DNO_WERROR_FLAG 764 765# job for analyzing the final coverage results 766analyze-pipeline: 767 extends: .test 768 stage: .post 769 image: jedbrown/mpich-ccache 770 tags: 771 - docker 772 dependencies: 773 variables: 774 PYTHON: python3 775 # Need a dummy TEST_ARCH that comes from artifacts 776 TEST_ARCH: arch-ci-linux-pkgs-gcov 777 allow_failure: true 778 before_script: 779 - date 780 script: 781 - python3 ./configure --with-mpi=0 --with-fc=0 --with-cxx=0 782# - make mergegcov LOC=$PWD 783 - ${PYTHON} lib/petsc/bin/maint/gcov.py --merge_gcov --loc=${PWD} --petsc_arch ${TEST_ARCH} 784 - ls 785 - ls arch*/* 786 artifacts: 787 name: "$CI_JOB_NAME" 788 when: always 789 paths: 790 - i*.html 791 - arch-*-gcov/* 792 expire_in: 4 days 793# 794# 795# The following tests are experimental; more tests by users at other sites may be added below this. Experimental test 796# that fail produce a warning, but do not block execution of a pipeline. 797# 798 799.test-experimental: 800 extends: .test 801 allow_failure: true 802 803