1# 2# stage-1 take only a few minutes; 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# 8# The stage-(n) tests are only started if all of the stage-(n-1) tests run without error 9# You can limit the testing by using the variable STAGE with value 1 or 2 10# 11 12stages: 13 - stage-1 14 - stage-2 15 - stage-3 16 - stage-4 17variables: 18 GIT_STRATEGY: fetch 19 GIT_CLEAN_FLAGS: -ffdxq 20 TIMEOUT: 450 21 22# 23# The most basic template that most tests will expand upon 24# 25 26.test-basic: 27 interruptible: true 28 only: 29 refs: 30# Set with CI/CD Shedules - New Schedule 31 - schedules 32 - api 33# Set with CI/CD Pipelines - Run Pipeline 34 - web 35 - merge_requests 36 dependencies: [] 37 38.test: 39 extends: .test-basic 40 except: 41 variables: 42 # Skip if the docs-only label is attached to a merge request 43 - $CI_MERGE_REQUEST_LABELS =~ /(^|,)docs-only($|,)/ 44 - $PETSC_CI_SCHEDULED =~ /yes/ 45 46check-ci-settings: 47 extends: .test-basic 48 stage: .pre 49 tags: 50 - gce-stage1 51 script: 52 - lib/petsc/bin/maint/check-ci-settings.sh 53 54# 55# This provides the basic order of operations and options template for cloud based stage 1 tests. 56# Not all test-short need to follow this template but most will. 57# 58 59.stage-1: 60 extends: .test 61 stage: stage-1 62 tags: 63 - gce-u22-stage1 64 before_script: 65 - date 66 - hostname 67 - grep PRETTY_NAME /etc/os-release 68 - nproc 69 - lscpu 70 - ccache --zero-stats 71 script: 72 - if [ ! -z ${LOAD_MODULES+x} ]; then module --trace load ${LOAD_MODULES}; module list; fi 73 - if [ ! -z ${INIT_SCRIPT+x} ]; then echo "sourcing ${INIT_SCRIPT}"; if [ -f ${HOME}/${INIT_SCRIPT} ]; then source ${HOME}/${INIT_SCRIPT}; else source ${INIT_SCRIPT}; fi; fi 74 - printf "PATH:$PATH\n" 75 - printf "PYTHONPATH:$PYTHONPATH\n" 76 - printf "CONFIG_OPTS:${CONFIG_OPTS}\n" 77 - printf "PETSC_OPTIONS:$PETSC_OPTIONS\n" 78 - if [ ! -z ${CI_MERGE_REQUEST_SOURCE_BRANCH_NAME+x} ]; then printf "CI_MERGE_REQUEST_SOURCE_BRANCH_NAME:$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME\n" ;fi 79 - ${PYTHON} ./configure --with-debugging=0 COPTFLAGS='-O3 -march=native' CXXOPTFLAGS='-O3 -march=native' FOPTFLAGS='-O3 -march=native' ${CONFIG_OPTS} 80 - make CFLAGS="${MAKE_CFLAGS}" CXXFLAGS="${MAKE_CXXFLAGS}" FFLAGS="${MAKE_FFLAGS}" CUDAFLAGS="${MAKE_CUDAFLAGS}" 81 - if [ ! -z ${ENABLE_CHECK+x} ]; then make CFLAGS="${MAKE_CFLAGS}" CXXFLAGS="${MAKE_CXXFLAGS}" FFLAGS="${MAKE_FFLAGS}" CUDAFLAGS="${MAKE_CUDAFLAGS}" check; fi 82 - make CFLAGS="${MAKE_TEST_CFLAGS}" CXXFLAGS="${MAKE_TEST_CXXFLAGS}" FFLAGS="${MAKE_TEST_FFLAGS}" CUDAFLAGS="${MAKE_CUDAFLAGS}" allgtests-tap gmakesearch="${TEST_SEARCH}" TIMEOUT=${TIMEOUT} 83 variables: 84 PYTHON: python3 85 MAKE_CFLAGS: -Werror 86 MAKE_CXXFLAGS: -Werror -Wzero-as-null-pointer-constant 87 MAKE_FFLAGS: -Werror 88 MAKE_TEST_CFLAGS: -Werror 89 MAKE_TEST_CXXFLAGS: -Werror 90 MAKE_TEST_FFLAGS: -Werror 91 after_script: 92 - date 93 - ccache --show-stats 94 artifacts: 95 reports: 96 junit: arch-*/tests/testresults.xml 97 name: "$CI_JOB_NAME" 98 when: always 99 paths: 100 - arch-*/lib/petsc/conf/*.log 101 - arch-*/lib/pkgconfig/petsc.pc 102 - arch-*/tests/testresults.xml 103 - arch-*/tests/test_*_tap.log 104 - arch-*/tests/test_*_err.log 105 expire_in: 4 days 106 107# 108# The following tests run on the cloud as part of stage-1. 109# 110 111ompi-cuda: 112 extends: .stage-1 113 tags: 114 - cuda-stage1 115 variables: 116 CONFIG_OPTS: --with-mpi-dir=/nfs/gce/software/custom/linux-ubuntu22.04-x86_64/spack/opt/spack/linux-ubuntu22.04-x86_64/gcc-11.3.0/openmpi-4.1.3-qrpnszy --with-cuda=1 --with-cuda-arch=all-major --CUDAPPFLAGS=-Wno-deprecated-gpu-targets --with-fc=0 117 TEST_SEARCH: snes_tutorials-ex19_cuda% 118 ENABLE_CHECK: 1 119 MAKE_CXXFLAGS: -Werror 120 121mpich-cxx-py3: 122 extends: .stage-1 123 variables: 124 CONFIG_OPTS: --with-clanguage=cxx --with-fc=0 CXXFLAGS=-std=c++11 --with-strict-petscerrorcode 125 TEST_SEARCH: snes_tutorials-ex48% 126 LOAD_MODULES: gcc/12.1.0 mpich/4.1-gcc-12.1.0 127 128uni-complex-float-int64: 129 extends: .stage-1 130 variables: 131 CONFIG_OPTS: --with-mpi=0 --with-scalar-type=complex --with-precision=single --with-64-bit-indices 132 TEST_SEARCH: ts_tutorials-ex11_adv_2d_quad_% 133 LOAD_MODULES: gcc/12.1.0 mpich/4.1-gcc-12.1.0 134 135c99-mlib-static-py: 136 extends: .stage-1 137 variables: 138 CONFIG_OPTS: --with-single-library=0 --with-shared-libraries=0 --with-strict-petscerrorcode CFLAGS=-std=c99 FFLAGS= CXXFLAGS= 139 ENABLE_CHECK: 1 140 TEST_SEARCH: snes_tutorials-ex19% snes_tutorials-ex5f90t% 141 MAKE_TEST_FFLAGS: -Werror -std=f2008 142 LOAD_MODULES: gcc/12.1.0 mpich/4.1-gcc-12.1.0 143 144petsc4py-install: 145 extends: .stage-2 146 tags: 147 - gce-u22-stage1 148 variables: 149 PYTHON: python3 150 T_PREFIX: petsc-install 151 T_DESTDIR: petsc-destdir 152 T_PETSC4PY: src/binding/petsc4py 153 T_VALIDATE_CMD: lib/petsc/bin/maint/validate-petsc4py.sh 154 script: 155 - printf "PATH:$PATH\n" 156 - mkdir hide 157 - if [ ! -z ${CI_MERGE_REQUEST_SOURCE_BRANCH_NAME+x} ]; then printf "CI_MERGE_REQUEST_SOURCE_BRANCH_NAME:$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME\n" ;fi 158 - ${PYTHON} ./configure --prefix="${PWD}/${T_PREFIX}" --with-petsc4py=1 --with-debugging=0 159 - make CFLAGS=-Werror CXXFLAGS="-Werror -Wzero-as-null-pointer-constant" FFLAGS=-Werror 160 - printf "====== Test A. Install into staging directory then into prefix directory (mimics distro package recipe) =====\n" 161 - make install DESTDIR="${PWD}/${T_DESTDIR}" 162 - test "$(find ${PWD}/${T_PREFIX} -mindepth 1 | wc -l)" -eq 0 163 - test "$(find ${PWD}/${T_DESTDIR} -mindepth 1 | wc -l)" -gt 0 164 - (cd "${PWD}/${T_DESTDIR}" && find * -exec install -v -D "{}" "/{}" \; ) 165 - mv arch-* hide/ && PETSC_DIR="${PWD}/${T_PREFIX}" ${T_VALIDATE_CMD} && mv hide/arch-* ./ 166 - rm -r "${PWD}/${T_PREFIX}" "${PWD}/${T_DESTDIR}" && mkdir "${PWD}/${T_PREFIX}" 167 - printf "====== Test B. Install directly into prefix directory =====\n" 168 - make install 169 - test "$(find ${PWD}/${T_PREFIX} -mindepth 1 | wc -l)" -gt 0 170 - mv arch-* hide/ && PETSC_DIR="${PWD}/${T_PREFIX}" ${T_VALIDATE_CMD} && mv hide/arch-* ./ 171 - rm -r "${PWD}/${T_PREFIX}"/*/petsc4py* 172 - printf "====== Test C. Install manually with setuptools =====\n" 173 - export PETSC_DIR="${PWD}/${T_PREFIX}" && (cd "${T_PETSC4PY}" && ${PYTHON} setup.py build) 174 - export PETSC_DIR="${PWD}/${T_PREFIX}" P="${PWD}" && (cd "${T_PETSC4PY}" && ${PYTHON} setup.py install --install-lib="${P}/${T_PREFIX}/lib") 175 - mv arch-* hide/ && PETSC_DIR="${PWD}/${T_PREFIX}" ${T_VALIDATE_CMD} && mv hide/arch-* ./ 176 - rm -r "${PWD}/${T_PREFIX}"/*/petsc4py* 177 - printf "====== Test D. Install manually with setuptools with staging =====\n" 178 - export PETSC_DIR="${PWD}/${T_PREFIX}" P="${PWD}" && (cd "${T_PETSC4PY}" && ${PYTHON} setup.py install --root="${P}/${T_DESTDIR}" --install-lib="${P}/${T_PREFIX}/lib") 179 - (cd "${PWD}/${T_DESTDIR}" && find * -exec install -v -D "{}" "/{}" \; ) 180 - mv arch-* hide/ && PETSC_DIR="${PWD}/${T_PREFIX}" ${T_VALIDATE_CMD} && mv hide/arch-* ./ 181 182petsc4py-pip: 183 extends: .stage-2 184 tags: 185 - gce-u22-stage1 186 variables: 187 PETSC_CONFIGURE_OPTIONS: --with-mpi=0 --with-fc=0 188 CFLAGS: -O0 189 script: 190 - python3 -m venv pip-builds 191 - source pip-builds/bin/activate 192 - python3 -m pip install --upgrade pip==23.0.1 193 - python3 -m pip install . 194 - python3 -m pip install src/binding/petsc4py 195 - python3 -m petsc4py 196 197checksource: 198 extends: .test-basic 199 stage: .pre 200 tags: 201 - gce-u22-stage1 202 script: 203 - python3 ./configure --with-mpi=0 --with-fc=0 --with-cxx=0 204 - vermin --version 205 - make vermin 206 - PATH=/nfs/gce/projects/petsc/soft/clang+llvm-16.0.0-x86_64-linux-gnu-ubuntu-18.04/bin:$PATH make checkclangformat SHELL=bash 207 - make checkbadSource SHELL=bash 208 - make checkbadFileChange SHELL=bash 209 - make -f gmakefile check_output SHELL=bash 210 - make check_petsc4py_rst 211 artifacts: 212 name: "$CI_JOB_NAME" 213 when: always 214 paths: 215 - arch-*/lib/petsc/conf/*.patch 216 - arch-*/lib/petsc/conf/*.log 217 expire_in: 4 days 218 219pause-for-approval: 220 extends: .test 221 stage: .pre 222 tags: 223 - gce-stage1 224 only: 225 refs: 226 - merge_requests 227 variables: 228 - $CI_MERGE_REQUEST_EVENT_TYPE == "merged_result" 229 - $CI_MERGE_REQUEST_EVENT_TYPE == "detached" 230 script: 231 - echo "pause-for-approval has no script to run" 232 variables: 233 GIT_STRATEGY: none 234 when: manual 235 allow_failure: false 236 237# 238# Basic template for code coverage generation. Tests should additionally inherit from the more 239# specialized OS-specific versions instead of this one. 240# 241 242.coverage-generate: 243 variables: 244 RUN_GCOV: 1 245 RUN_GCOV_OPTIONS: --decisions 246 247.coverage-disable: 248 variables: 249 RUN_GCOV: 0 250 251# 252# This provides the basic order of operations and options template for stage-2,3 tests. 253# Not all stage-2,3 need to follow this template, but most will. 254# 255.stage-23: 256 extends: 257 - .test 258 - .coverage-generate 259 script: 260 - if [ ! -z ${LOAD_MODULES+x} ]; then module --trace load ${LOAD_MODULES}; module list; fi 261 - if [ ! -z ${GCOV_MODULES+x} ]; then module --trace load ${GCOV_MODULES}; module list; fi 262 - if [ ! -z ${INIT_SCRIPT+x} ]; then echo "sourcing ${INIT_SCRIPT}"; if [ -f ${HOME}/${INIT_SCRIPT} ]; then source ${HOME}/${INIT_SCRIPT}; else source ${INIT_SCRIPT}; fi; fi 263 - if [ "${RUN_GCOV}" == 1 ]; then 264 printf "RUN_GCOV_OPTIONS:$RUN_GCOV_OPTIONS\n"; 265 gcovr --version; 266 fi 267 - if [ -d ${HOME}/petsc-hash-pkgs/ ]; then find ${HOME}/petsc-hash-pkgs/ -maxdepth 1 -mindepth 1 -type d -mtime +25 -exec rm -rf {} \; ; fi 268 - printf "PATH:$PATH\n" 269 - printf "PYTHONPATH:$PYTHONPATH\n" 270 - printf "PETSC_OPTIONS:$PETSC_OPTIONS\n" 271 - if [ ! -z ${CI_MERGE_REQUEST_SOURCE_BRANCH_NAME+x} ]; then printf "CI_MERGE_REQUEST_SOURCE_BRANCH_NAME:$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME\n" ;fi 272 - printf "./config/examples/${TEST_ARCH}.py\n" 273 - cat ./config/examples/${TEST_ARCH}.py 274 - ./config/examples/${TEST_ARCH}.py || if [ -f naglicenseproblem ]; then exit 126; else exit 1; fi 275 - make CFLAGS="${MAKE_CFLAGS}" CXXFLAGS="${MAKE_CXXFLAGS}" FFLAGS="${MAKE_FFLAGS}" CUDAFLAGS="${MAKE_CUDAFLAGS}" || if [ -f naglicenseproblem ]; then exit 126; else exit 1; fi 276 - make CFLAGS="${MAKE_CFLAGS}" CXXFLAGS="${MAKE_CXXFLAGS}" FFLAGS="${MAKE_FFLAGS}" CUDAFLAGS="${MAKE_CUDAFLAGS}" check || if [ -f naglicenseproblem ]; then exit 126; else exit 1; fi 277 - make updatedatafiles 278 - if [ -z ${DISABLE_PETSC4PY_TESTS+x} ]; then if [ -z ${ENABLE_PETSC4PY_LDPRELOAD+x} ]; then echo "NOT using LD_PRELOAD"; make petsc4pytest; else echo "using LD_PRELOAD"; LD_PRELOAD=${PWD}/${TEST_ARCH}/lib/libpetsc.so make petsc4pytest; fi; fi 279 - if [ -z ${DISABLE_TESTS+x} ]; then make cleantest && make CFLAGS="${MAKE_CFLAGS}" CXXFLAGS="${MAKE_CXXFLAGS}" FFLAGS="${MAKE_FFLAGS}" CUDAFLAGS="${MAKE_CUDAFLAGS}" allgtests-tap TIMEOUT=${TIMEOUT} ${TEST_OPTS} || if [ -f naglicenseproblem ]; then exit 126; else exit 1; fi; fi 280 - if [ "${RUN_GCOV}" == 1 ]; then make gcov PETSC_GCOV_OPTIONS="${RUN_GCOV_OPTIONS}"; fi 281 artifacts: 282 reports: 283 junit: arch-*/tests/testresults.xml 284 name: "$CI_JOB_NAME" 285 when: always 286 paths: 287 - arch-*/lib/petsc/conf/*.log 288 - arch-*/lib/pkgconfig/petsc.pc 289 - arch-*/tests/testresults.xml 290 - arch-*/tests/test_arch-*_tap.log 291 - arch-*/tests/test_arch-*_err.log 292 - arch-*/arch-*-gcovr-report.json.tar.bz2 293 expire_in: 4 days 294 variables: 295 OPENBLAS_NUM_THREADS: 1 296 297.stage-2: 298 extends: .stage-23 299 stage: stage-2 300 301.stage-3: 302 extends: .stage-23 303 stage: stage-3 304 305# 306# The following provide templates for various OSes for pre/post info 307# 308 309.linux_test_noflags: 310 before_script: 311 - date 312 - hostname 313 - grep PRETTY_NAME /etc/os-release 314 - nproc 315 - lscpu 316 - ccache --zero-stats 317 after_script: 318 - date 319 - ccache --show-stats 320 321.linux_test_nofflags: 322 extends: .linux_test_noflags 323 variables: 324 MAKE_CFLAGS: -Werror 325 MAKE_CXXFLAGS: -Werror 326 327.linux_test: 328 extends: .linux_test_noflags 329 variables: 330 MAKE_CFLAGS: -Werror 331 MAKE_CXXFLAGS: -Werror 332 MAKE_FFLAGS: -Werror 333 334.freebsd_test: 335 extends: 336 - .coverage-disable 337 variables: 338 MAKE_CFLAGS: -Werror 339 MAKE_CXXFLAGS: -Werror 340 MAKE_FFLAGS: -Werror 341 before_script: 342 - date 343 - hostname 344 - freebsd-version 345 - echo $(sysctl -n hw.ncpu) 346 - ccache --zero-stats 347 after_script: 348 - date 349 - ccache --show-stats 350 351.osx_test: 352 variables: 353 MAKE_CFLAGS: -Werror 354 MAKE_CXXFLAGS: -Werror 355 MAKE_FFLAGS: -Werror 356 before_script: 357 - date 358 - hostname 359 - sw_vers -productVersion 360 - echo $(sysctl -n hw.ncpu) 361 - ccache --zero-stats 362 after_script: 363 - date 364 - ccache --show-stats 365 366.mswin_test: 367 extends: 368 - .coverage-disable 369 before_script: 370 - date 371 - hostname 372 - uname -a 373 - nproc 374 after_script: 375 - date 376 377# 378# The following tests run as part of stage-2. 379# 380# The tags variable used in the tests below connects the particular test with the runners 381# listed on the left hand side of https://gitlab.com/petsc/petsc/-/settings/ci_cd. 382# For example the test 'linux-sycl-double' any runner that has the tags 'gce-u22-stage3, linux-fast' 383# (in a blue box beneath it) 384# 385 386osx-m1: 387 extends: 388 - .stage-3 389 - .osx_test 390 - .coverage-disable 391 tags: 392 - os:macos-m1 393 variables: 394 TEST_ARCH: arch-ci-osx-m1 395 PETSC_OPTIONS: -check_pointer_intensity 0 -error_output_stdout -nox -nox_warning -malloc_dump 396 INIT_SCRIPT: /Volumes/Scratch/svcpetsc/soft/py3venv/cython3setup.sh 397 398freebsd-cxx-cmplx-64idx-dbg: 399 extends: 400 - .stage-2 401 - .freebsd_test 402 tags: 403 - os:fbsd 404 variables: 405 TEST_ARCH: arch-ci-freebsd-cxx-cmplx-64idx-dbg 406 407freebsd-c-single-opt: 408 extends: 409 - .stage-2 410 - .freebsd_test 411 tags: 412 - os:fbsd 413 variables: 414 TEST_ARCH: arch-ci-freebsd-c-single-opt 415 416mswin-opt-impi: 417 extends: 418 - .stage-3 419 - .mswin_test 420 tags: 421 - mswin-stage3 422 variables: 423 TEST_ARCH: arch-ci-mswin-opt-impi 424 TEST_OPTS: search='ksp_ksp_tests*' 425 426linux-gcc-quad-64idx-dbg: 427 extends: 428 - .stage-2 429 - .linux_test 430 tags: 431 - gce-stage2 432 variables: 433 TEST_ARCH: arch-ci-linux-gcc-quad-64idx-dbg 434 435linux-gcc-pkgs-opt: 436 extends: 437 - .stage-2 438 - .linux_test 439 tags: 440 - gce-stage2 441 variables: 442 TEST_ARCH: arch-ci-linux-gcc-pkgs-opt 443 444linux-gcc-complex-opt-32bit: 445 extends: 446 - .stage-2 447 - .linux_test 448 tags: 449 - gce-stage2 450 variables: 451 TEST_ARCH: arch-ci-linux-gcc-complex-opt-32bit 452 453linux-emcc: 454 extends: 455 - .stage-2 456 - .linux_test 457 - .coverage-disable 458 tags: 459 - gce-stage2 460 variables: 461 TEST_ARCH: arch-ci-linux-emcc 462 INIT_SCRIPT: /nfs/gce/projects/petsc/soft/u22.04/emsdk/emsdk_env.sh 463 DISABLE_TESTS: 1 464 465# 466# The following tests run as part of stage-3. 467# 468 469freebsd-cxx-cmplx-pkgs-dbg: 470 extends: 471 - .stage-3 472 - .freebsd_test 473 tags: 474 - os:fbsd 475 variables: 476 TEST_ARCH: arch-ci-freebsd-cxx-cmplx-pkgs-dbg 477 478freebsd-cxx-pkgs-opt: 479 extends: 480 - .stage-3 481 - .freebsd_test 482 tags: 483 - os:fbsd 484 variables: 485 PETSC_OPTIONS: -vecscatter_mpi1 false -options_left false 486 TEST_ARCH: arch-ci-freebsd-cxx-pkgs-opt 487 488freebsd-pkgs-opt: 489 extends: 490 - .stage-3 491 - .freebsd_test 492 tags: 493 - os:fbsd 494 variables: 495 TEST_ARCH: arch-ci-freebsd-pkgs-opt 496 MAKE_CFLAGS: -DPETSC_SKIP_COMPLEX -Werror 497 498linux-hip-double: 499 extends: 500 - .stage-3 501 - .linux_test_noflags 502 - .coverage-disable 503 tags: 504 - gpu:amd, os:linux 505 variables: 506 TEST_ARCH: arch-ci-linux-hip-double 507 INIT_SCRIPT: /home/users/balay/bin/instinct-mod-init.sh 508 509linux-sycl-double: 510 extends: 511 - .stage-3 512 - .linux_test_nofflags 513 - .coverage-disable 514 tags: 515 - gce-u22-stage3, linux-fast 516 variables: 517 MODULEPATH: /nfs/gce/projects/petsc/soft/u22.04/oneapi/modulefiles 518 TEST_ARCH: arch-ci-linux-sycl-double 519 LOAD_MODULES: compiler/latest mpi/latest 520 TEST_OPTS: query=requires queryval=kokkos_kernels 521 MAKE_CFLAGS: -Wno-expected-file-type -Werror 522 523linux-cuda-pkgs: 524 extends: 525 - .stage-3 526 - .linux_test 527 tags: 528 - cuda-stage3 529 variables: 530 TEST_ARCH: arch-ci-linux-cuda-pkgs 531 # run all tests that: 532 # 1. require cuda, OR 533 # 2. require device, OR 534 # 3. require hypre, OR 535 # 4. require kokkos[_kernels], AND lives in the vec subdirectory 536 # 537 # need to use the alternate OR spelling since '|' is interpreted as a pipe by the 538 # shell, and I could not manage to escape it enough times... 539 TEST_OPTS: -j3 queryval='cuda,device,hypre,kokkos*,vec*' query='requires,requires,requires,requires%OR%name' 540 MAKE_CUDAFLAGS: --compiler-options -Wall,-Werror 541 542linux-cuda112-omp: 543 extends: 544 - .stage-3 545 - .linux_test 546 - .coverage-disable 547 tags: 548 - cuda-stage3 549 variables: 550 TEST_ARCH: arch-ci-linux-cuda112-omp 551 TEST_OPTS: -j4 query=requires queryval=kokkos_kernels 552 LOAD_MODULES: cuda/11.2.2 u-gcc-9/9.4.0 553 OMP_PROC_BIND: "false" 554 OMP_NUM_THREADS: 1 555 MAKE_CUDAFLAGS: --compiler-options -Wall,-Werror 556 557linux-cuda-cmplx: 558 extends: 559 - .stage-3 560 - .linux_test 561 tags: 562 - cuda-stage3 563 variables: 564 TEST_ARCH: arch-ci-linux-cuda-cmplx 565 MAKE_CUDAFLAGS: --compiler-options -Wall,-Werror 566 567linux-cuda-double-64idx: 568 extends: 569 - .stage-3 570 - .linux_test 571 tags: 572 - cuda12 573 variables: 574 TEST_ARCH: arch-ci-linux-cuda-double-64idx 575 TEST_OPTS: -j3 query=requires queryval=cuda 576 MAKE_CUDAFLAGS: --compiler-options -Wall,-Werror 577 578linux-cuda-single-cxx: 579 extends: 580 - .stage-3 581 - .linux_test_noflags 582 - .coverage-disable 583 tags: 584 - cuda-stage3 585 variables: 586 TEST_ARCH: arch-ci-linux-cuda-single-cxx 587 MODULEPATH: /nfs/gce/projects/petsc/soft/u22.04/spack-2023-02-02/share/spack/modules/linux-ubuntu22.04-ivybridge 588 LOAD_MODULES: nvhpc-22.11-gcc-11.3.0-vmvmbrx 589 TEST_OPTS: -j15 query=requires queryval=cuda 590 591linux-cuda-uni-pkgs: 592 extends: 593 - .stage-3 594 - .linux_test 595 tags: 596 - cuda-stage3 597 variables: 598 TEST_ARCH: arch-ci-linux-cuda-uni-pkgs 599 TEST_OPTS: -j20 query=requires queryval=cuda 600 MAKE_CUDAFLAGS: --compiler-options -Wall,-Werror 601 602linux-clang-cuda: 603 extends: 604 - .stage-3 605 - .linux_test 606 - .coverage-disable 607 tags: 608 - cuda-stage3 609 variables: 610 TEST_ARCH: arch-ci-linux-clang-cuda 611 TEST_OPTS: -j 1 queryval='cuda*,snes*' query='requires%OR%name' 612 MODULEPATH: /nfs/gce/projects/petsc/soft/u22.04/spack-2023-02-02/share/spack/modules/linux-ubuntu22.04-ivybridge 613 LOAD_MODULES: llvm-15.0.7-gcc-11.3.0-pjldtxf cuda-11.5.2-gcc-11.3.0-jkoottx gcc-11.3.0-gcc-11.3.0-pgrvke5 614 MAKE_CUDAFLAGS: -Wno-pass-failed -Werror 615 616linux-viennacl: 617 extends: 618 - .stage-3 619 - .linux_test 620 tags: 621 - cuda-stage3 622 variables: 623 TEST_ARCH: arch-ci-linux-viennacl 624 MAKE_CXXFLAGS: -Werror -Wno-ignored-attributes 625 TEST_OPTS: -j20 query=requires queryval=viennacl 626 627linux-without-fc: 628 extends: 629 - .stage-3 630 - .linux_test 631 tags: 632 - gce-u22-stage3 633 variables: 634 TEST_ARCH: arch-ci-linux-without-fc 635 636linux-cmplx-single: 637 extends: 638 - .stage-3 639 - .linux_test 640 - .coverage-disable 641 tags: 642 - name:si 643 variables: 644 FLEXIBLAS: netlib 645 TEST_ARCH: arch-ci-linux-cmplx-single 646 647linux-gcc-cxx-avx2: 648 extends: 649 - .stage-3 650 - .linux_test 651 tags: 652 - name:petsc-knl-01 653 variables: 654 TEST_ARCH: arch-ci-linux-gcc-cxx-avx2 655 656linux-clang-avx: 657 extends: 658 - .stage-3 659 - .linux_test 660 tags: 661 - name:petsc-knl-01 662 variables: 663 TEST_ARCH: arch-ci-linux-clang-avx 664 665linux-knl: 666 extends: 667 - .stage-3 668 - .linux_test 669 - .coverage-disable 670 tags: 671 - name:petsc-knl-01 672 variables: 673 MAKE_FFLAGS: -warn errors 674 TEST_ARCH: arch-ci-linux-knl 675 LOAD_MODULES: intel-oneapi-compilers/2022.0.2 intel-oneapi-mkl/2022.0.2 intel-oneapi-mpi/2021.5.1 676 677linux-intel-mkl-single: 678 extends: 679 - .stage-3 680 - .linux_test_nofflags 681 - .coverage-disable 682 tags: 683 - name:petsc-knl-01 684 variables: 685 TEST_ARCH: arch-ci-linux-intel-mkl-single 686 LOAD_MODULES: intel-oneapi-compilers/2022.0.2 intel-oneapi-mkl/2022.0.2 intel-oneapi-mpi/2021.5.1 687 688linux-cxx-cmplx-pkgs-64idx: 689 extends: 690 - .stage-3 691 - .linux_test 692 tags: 693 - gce-u22-stage3 694 variables: 695 TEST_ARCH: arch-ci-linux-cxx-cmplx-pkgs-64idx 696 PETSC_OPTIONS: -fp_trap 697 698# Set env vars for 'Kokkos + OpenMP' tests, so that they won't give warnings 699linux-pkgs-dbg-ftn-interfaces: 700 extends: 701 - .stage-3 702 - .linux_test 703 - .coverage-disable 704 tags: 705 - gce-u22-stage3 706 variables: 707 TEST_ARCH: arch-ci-linux-pkgs-dbg-ftn-interfaces 708 OMP_PROC_BIND: "false" 709 OMP_NUM_THREADS: 4 710 PETSC_OPTIONS: -fp_trap 711 712linux-pkgs-cxx-mlib: 713 extends: 714 - .stage-3 715 - .linux_test 716 tags: 717 - gce-u22-stage3 718 variables: 719 TEST_ARCH: arch-ci-linux-pkgs-cxx-mlib 720 PETSC_OPTIONS: -fp_trap 721 except: 722 variables: 723 - $PETSC_CI_SCHEDULED =~ /yes/ 724 725linux-pkgs-valgrind: 726 extends: 727 - .stage-3 728 - .linux_test 729 tags: 730 - gce-valgrind 731 variables: 732 TEST_ARCH: arch-ci-linux-pkgs-valgrind 733 TIMEOUT: 7200 734 735linux-pkgs-opt: 736 extends: 737 - .stage-3 738 - .linux_test 739 - .coverage-disable 740 tags: 741 - gce-u22-stage3, linux-fast 742 variables: 743 TEST_ARCH: arch-ci-linux-pkgs-opt 744 LOAD_MODULES: gcc/12.1.0 745 MAKE_CXXFLAGS: -Wno-deprecated-declarations -Werror 746 747linux-pkgs-dbg: 748 extends: 749 - .stage-3 750 - .linux_test 751 tags: 752 - gce-u22-stage3, linux-gcov 753 variables: 754 TEST_ARCH: arch-ci-linux-pkgs-dbg 755 PETSC_OPTIONS: -fp_trap 756 757linux-matlab-ilp64: 758 extends: 759 - .stage-3 760 - .linux_test 761 tags: 762 - gce-u22-stage3, linux-gcov 763 variables: 764 TEST_ARCH: arch-ci-linux-matlab-ilp64 765 LOAD_MODULES: gcc/9.4.0 matlab/R2022a 766 allow_failure: true 767 768linux-pgi: 769 extends: 770 - .stage-3 771 - .linux_test_noflags 772 - .coverage-disable 773 tags: 774 - gce-u22-stage3, linux-mcpu 775 variables: 776 TEST_ARCH: arch-ci-linux-pgi 777 LOAD_MODULES: nvhpc/22.3 778 779# If the Nag license server fails then ${PETSC_DIR}/naglicenseproblem is created and the job is marked as failed but allow_failure 780linux-nagfor: 781 extends: 782 - .stage-3 783 - .linux_test_nofflags 784 tags: 785 - gce-stage2, linux-mcpu 786 variables: 787 LOAD_MODULES: nag/6.1 788 TEST_ARCH: arch-ci-linux-nagfor 789 allow_failure: 790 exit_codes: 126 791 792linux-intel-cmplx: 793 extends: 794 - .stage-3 795 - .linux_test_nofflags 796 - .coverage-disable 797 tags: 798 - gce-u22-stage3 799 variables: 800 TEST_ARCH: arch-ci-linux-intel-cmplx 801 LOAD_MODULES: intel-oneapi-compilers/2023.0.0 intel-oneapi-mkl/2022.0.2 802 803linux-xsdk-dbg: 804 extends: 805 - .stage-3 806 - .linux_test 807 tags: 808 - gce-u22-stage3 809 variables: 810 TEST_ARCH: arch-ci-linux-xsdk-dbg 811 LOAD_MODULES: gcc/12.1.0 812 813linux-analyzer: 814 extends: 815 - .stage-3 816 - .linux_test 817 - .coverage-disable 818 tags: 819 - gce-u22-stage2 820 script: 821 - printf "PATH:$PATH\n" 822 - printf "PYTHONPATH:$PYTHONPATH\n" 823 - printf "PETSC_OPTIONS:$PETSC_OPTIONS\n" 824 - if [ ! -z ${CI_MERGE_REQUEST_SOURCE_BRANCH_NAME+x} ]; then printf "CI_MERGE_REQUEST_SOURCE_BRANCH_NAME:$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME\n" ;fi 825 - printf "./config/examples/${TEST_ARCH}.py\n" 826 - cat ./config/examples/${TEST_ARCH}.py 827 - ./config/examples/${TEST_ARCH}.py 828 - make LINTER_OPTIONS="${LINTER_OPTIONS}" test-lint 829 - make LINTER_OPTIONS="${LINTER_OPTIONS} -fdoc-* no" lint 830 variables: 831 TEST_ARCH: arch-ci-linux-analyzer 832 LINTER_OPTIONS: "--PETSC_ARCH=${TEST_ARCH} --clang_lib=`llvm-config-14 --libdir`/libclang.so.1 --verbose --werror" 833 artifacts: 834 paths: 835 - arch-*/lib/petsc/conf/*.log 836 - ./petscLintPatches/*.patch 837 expire_in: 4 days 838 except: 839 variables: 840 - $PETSC_CI_SCHEDULED =~ /yes/ 841 842linux-intel: 843 extends: 844 - .stage-3 845 - .linux_test_nofflags 846 - .coverage-disable 847 tags: 848 - gce-u22-stage3 849 variables: 850 TEST_ARCH: arch-ci-linux-intel 851 LOAD_MODULES: intel-oneapi-compilers/2023.0.0 intel-oneapi-mkl/2022.0.2 852 853linux-opt-misc: 854 extends: 855 - .stage-3 856 - .linux_test 857 tags: 858 - gce-u22-stage3, linux-fast 859 variables: 860 TEST_ARCH: arch-ci-linux-opt-misc 861 LOAD_MODULES: gcc/8.5.0 862 863linux-pkgs-64idx: 864 extends: 865 - .stage-3 866 - .linux_test 867 tags: 868 - gce-u22-stage3, linux-mcpu 869 variables: 870 TEST_ARCH: arch-ci-linux-pkgs-64idx 871 LOAD_MODULES: intel-oneapi-mkl/2022.0.2 872 873linux-64idx-i8: 874 extends: 875 - .stage-3 876 - .linux_test 877 tags: 878 - gce-u22-stage3, linux-mcpu 879 variables: 880 TEST_ARCH: arch-ci-linux-64idx-i8 881 882linux-gcc-ifc-cmplx: 883 extends: 884 - .stage-3 885 - .linux_test_nofflags 886 tags: 887 - gce-u22-stage3 888 variables: 889 TEST_ARCH: arch-ci-linux-gcc-ifc-cmplx 890 LOAD_MODULES: intel-oneapi-compilers/2022.2.1 891 892linux-opt-cxx-quad: 893 extends: 894 - .stage-3 895 - .linux_test 896 tags: 897 - gce-u22-stage3 898 variables: 899 TEST_ARCH: arch-ci-linux-opt-cxx-quad 900 901linux-ILP64: 902 extends: 903 - .stage-3 904 - .linux_test 905 tags: 906 - gce-u22-stage3 907 variables: 908 TEST_ARCH: arch-ci-linux-ILP64 909 LOAD_MODULES: gcc/8.5.0 mpich/2-1.5-gcc-8.5.0 910 MAKE_CFLAGS: -Wno-discarded-qualifiers -Werror 911 912linux-64idx-i8-uni: 913 extends: 914 - .stage-3 915 - .linux_test 916 tags: 917 - gce-u22-stage3, linux-mcpu 918 variables: 919 TEST_ARCH: arch-ci-linux-64idx-i8-uni 920 921linux-misc-32bit: 922 extends: 923 - .stage-3 924 - .linux_test 925 tags: 926 - gce-u22-stage3 927 variables: 928 TEST_ARCH: arch-ci-linux-misc-32bit 929 930mswin-intel-cxx-cmplx: 931 extends: 932 - .stage-3 933 - .mswin_test 934 tags: 935 - mswin-stage3 936 variables: 937 TEST_ARCH: arch-ci-mswin-intel-cxx-cmplx 938 939mswin-uni: 940 extends: 941 - .stage-3 942 - .mswin_test 943 tags: 944 - mswin-stage3 945 variables: 946 PETSC_OPTIONS: -check_pointer_intensity 0 -error_output_stdout -nox -nox_warning -malloc_dump 947 TEST_ARCH: arch-ci-mswin-uni 948 949mswin-gnu: 950 extends: 951 - .stage-3 952 - .mswin_test 953 tags: 954 - mswin-stage3 955 variables: 956 TEST_ARCH: arch-ci-mswin-gnu 957 MAKE_CFLAGS: -Werror 958 MAKE_CXXFLAGS: -Werror 959 MAKE_FFLAGS: -Werror 960 DISABLE_TESTS: 1 961 962#mswin-intel: 963# extends: 964# - .stage-3 965# - .mswin_test 966# tags: 967# - os:win 968# variables: 969# TEST_ARCH: arch-ci-mswin-intel 970 971osx-cxx-cmplx-pkgs-dbg: 972 extends: 973 - .stage-3 974 - .osx_test 975 - .coverage-disable 976 tags: 977 - os:macos-x64 978 variables: 979 TEST_ARCH: arch-ci-osx-cxx-cmplx-pkgs-dbg 980 INIT_SCRIPT: .zprofile 981 982osx-cxx-pkgs-opt: 983 extends: 984 - .stage-3 985 - .osx_test 986 tags: 987 - os:macos-x64 988 variables: 989 PETSC_OPTIONS: -vecscatter_mpi1 false -options_left false 990 TEST_ARCH: arch-ci-osx-cxx-pkgs-opt 991 MAKE_CXXFLAGS: -Werror -Wno-pass-failed 992 INIT_SCRIPT: .zprofile 993 994osx-dbg: 995 extends: 996 - .stage-3 997 - .osx_test 998 - .coverage-disable 999 tags: 1000 - os:macos-x64 1001 variables: 1002 TEST_ARCH: arch-ci-osx-dbg 1003 ASAN_OPTIONS: log_path=stdout 1004 INIT_SCRIPT: .zprofile 1005 1006osx-xsdk-opt: 1007 extends: 1008 - .stage-3 1009 - .osx_test 1010 - .coverage-disable 1011 tags: 1012 - os:macos-x64 1013 variables: 1014 TEST_ARCH: arch-ci-osx-xsdk-opt 1015 INIT_SCRIPT: .zprofile 1016 1017# job for analyzing the coverage results and generating the various reports 1018coverage-analyze: 1019 extends: .test 1020 stage: stage-4 1021 tags: 1022 - gce-u22-short 1023 dependencies: 1024 # stage-2 1025 - linux-gcc-quad-64idx-dbg 1026 - linux-gcc-pkgs-opt 1027 - linux-gcc-complex-opt-32bit 1028 # stage-3 1029 - linux-pkgs-dbg 1030 - linux-matlab-ilp64 1031 - linux-cuda-pkgs 1032 - linux-cxx-cmplx-pkgs-64idx 1033 - linux-cuda-cmplx 1034 - linux-cuda-double-64idx 1035 - linux-cuda-uni-pkgs 1036 - linux-viennacl 1037 - linux-without-fc 1038 - linux-gcc-cxx-avx2 1039 - linux-clang-avx 1040 - linux-pkgs-cxx-mlib 1041 - linux-pkgs-valgrind 1042 - linux-nagfor 1043 - linux-xsdk-dbg 1044 - linux-opt-misc 1045 - linux-pkgs-64idx 1046 - linux-64idx-i8 1047 - linux-gcc-ifc-cmplx 1048 - linux-opt-cxx-quad 1049 - linux-ILP64 1050 - linux-64idx-i8-uni 1051 - osx-cxx-pkgs-opt 1052 variables: 1053 PYTHON: python3 1054 PETSC_ARCH: arch-ci-analyze-pipeline 1055 before_script: 1056 - date 1057 - hostname 1058 script: 1059 - if [ ! -z ${LOAD_MODULES+x} ]; then module --trace load ${LOAD_MODULES}; module list; fi 1060 - ${PYTHON} --version 1061 - gcovr --version 1062 - printf "PATH:$PATH\n" 1063 - printf "PYTHONPATH:$PYTHONPATH\n" 1064 - if [ ! -z ${CI_MERGE_REQUEST_SOURCE_BRANCH_NAME+x} ]; then printf "CI_MERGE_REQUEST_SOURCE_BRANCH_NAME:$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME\n" ;fi 1065 - ${PYTHON} ./configure --with-mpi=0 --with-cxx=0 --download-sowing --with-fortran-bindings 1066 - make mergegcov PETSC_GCOV_OPTIONS='--ci-mode --verbose' 1067 coverage: /^\s*lines:\s*\d+.\d+\%/ 1068 artifacts: 1069 name: "$CI_JOB_NAME" 1070 when: always 1071 paths: 1072 - arch-ci-analyze-pipeline/gcovr/* 1073 - arch-ci-analyze-pipeline/lib/petsc/conf/*.log 1074 expire_in: 4 days 1075 reports: 1076 coverage_report: 1077 coverage_format: cobertura 1078 path: arch-ci-analyze-pipeline/gcovr/xml/*.xml 1079 1080# template for the coverage review jobs, these must be separate jobs as you cannot deploy multiple 1081# environments from one job... 1082.coverage-review: 1083 extends: .test 1084 stage: .post 1085 tags: 1086 - gce-u22-short 1087 dependencies: 1088 - coverage-analyze 1089 script: 1090 - date 1091 - hostname 1092 artifacts: 1093 name: "$CI_JOB_NAME" 1094 when: always 1095 paths: 1096 - arch-ci-analyze-pipeline/gcovr/* 1097 - arch-ci-analyze-pipeline/lib/petsc/conf/*.log 1098 expire_in: 4 days 1099 1100coverage-total-review: 1101 extends: .coverage-review 1102 environment: 1103 name: coverage/all/$CI_COMMIT_REF_SLUG 1104 url: https://$CI_PROJECT_NAMESPACE.gitlab.io/-/$CI_PROJECT_NAME/-/jobs/$CI_JOB_ID/artifacts/arch-ci-analyze-pipeline/gcovr/html/report.html 1105 auto_stop_in: one week 1106 deployment_tier: testing 1107 1108coverage-untested-review: 1109 extends: .coverage-review 1110 environment: 1111 name: coverage/untested/$CI_COMMIT_REF_SLUG 1112 url: https://$CI_PROJECT_NAMESPACE.gitlab.io/-/$CI_PROJECT_NAME/-/jobs/$CI_JOB_ID/artifacts/arch-ci-analyze-pipeline/gcovr/html_untested/report_untested.html 1113 auto_stop_in: one week 1114 deployment_tier: testing 1115 1116analyze-pipeline: 1117 extends: .coverage-review 1118 script: 1119 - date 1120 - hostname 1121 # This file is created by lib/petsc/bin/maint/gcov.py. If it exists then the CI 1122 # pipeline should fail 1123 - if [ -f ./arch-ci-analyze-pipeline/gcovr/.CI_FAIL ]; then 1124 cat ./arch-ci-analyze-pipeline/gcovr/merge_gcov_errors.log; 1125 exit 1; 1126 fi 1127 allow_failure: true 1128 1129# 1130# Base job for a documentation build (runs in venv to allow installing additional packages without root) 1131# 1132.docs: 1133 stage: stage-3 1134 tags: 1135 - linux-docs 1136 before_script: 1137 - git fetch --unshallow --no-tags origin +release:remotes/origin/release +main:remotes/origin/main 1138 - module --trace load python-3.11.2-gcc-9.4.0-6p2ktlj 1139 - printf "PATH:$PATH\n" 1140 - printf "PYTHONPATH:$PYTHONPATH\n" 1141 - VENV=venv-petsc-docs && 1142 python3 -m venv $VENV && 1143 . $VENV/bin/activate && 1144 cd doc && 1145 python3 -m pip install -r requirements.txt 1146 1147# 1148# Build documentation and make available for review using GitLab pages 1149# 1150docs-review: 1151 extends: 1152 - .docs 1153 - .test-basic 1154 script: 1155 - (make html BUILDDIR="../public" SPHINXOPTS="-T -E -W --keep-going -j 1") || (printf "Sphinx build failed (warnings count as errors)\n" && false) 1156 - (make latexpdf SPHINXOPTS="-T -E -W --keep-going") || (printf "Sphinx build failed (warnings count as errors)\n" && false) 1157 - cp _build/latex/manual.pdf ../public/html/manual/ 1158 environment: 1159 name: review/$CI_COMMIT_REF_NAME 1160 url: https://$CI_PROJECT_NAMESPACE.gitlab.io/-/$CI_PROJECT_NAME/-/jobs/$CI_JOB_ID/artifacts/public/html/index.html 1161 auto_stop_in: one week 1162 deployment_tier: development 1163 artifacts: 1164 paths: 1165 - public 1166 expire_in: 4 days 1167 except: 1168 variables: 1169 - $PETSC_CI_SCHEDULED =~ /yes/ 1170 1171# 1172# Deploy documentation using GitLab pages 1173# 1174pages: # this job name has special meaning to GitLab 1175 extends: .docs 1176 interruptible: true 1177 script: 1178 - mkdir -p ../public/ && cp public/* ../public/ 1179 - (git checkout origin/main && pip install -r requirements.txt && make website-deploy SPHINXOPTS="-j 1" BUILDDIR="../public/main" && make latexpdf && mkdir -p ../public/main/docs/manual && cp _build/latex/manual.pdf ../public/main/manual/) || (printf "Sphinx build failed (warnings count as errors)\n" && false) 1180 - git clean -fdxq && rm -rf images ../arch-classic-docs 1181 - (git checkout origin/release && pip install -r requirements.txt && make website-deploy SPHINXOPTS="-j 1" BUILDDIR="../public/release" && make latexpdf && mkdir -p ../public/release/docs/manual && cp _build/latex/manual.pdf ../public/release/docs/manual/) || (printf "Sphinx build failed (warnings count as errors)\n" && false) 1182 - rm -rf ../public/*/.doctrees 1183 only: 1184 variables: 1185 - $PETSC_CI_SCHEDULED == "yes" 1186 artifacts: 1187 paths: 1188 - public 1189 expire_in: 4 days 1190 1191# 1192# 1193# The following tests are experimental; more tests by users at other sites may be added below this. Experimental test 1194# that fail produce a warning, but do not block execution of a pipeline. 1195# 1196 1197.test-experimental: 1198 extends: .test 1199 allow_failure: true 1200 1201