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