
* CI configuration boilerplate reduction and refactor Configuration: - New notation for list concatenation (prepend/append) - New notation for string concatenation (prepend/append) - Break out configuration files for: ci.yaml, cdash.yaml, view.yaml - Spack CI section refactored to improve self-consistency and composability - Scripts are now lists of lists and/or lists of strings - Job attributes are now listed under precedence ordered list that are composed/merged using Spack config merge rules. - "service-jobs" are identified explicitly rather than as a batch CI: - Consolidate common, platform, and architecture configurations for all CI stacks into composable configuration files - Make padding consistent across all stacks (256) - Merge all package -> runner mappings to be consistent across all stacks Unit Test: - Refactor CI module unit-tests for refactor configuration Docs: - Add docs for new notations in configuration.rst - Rewrite docs on CI pipelines to be consistent with refactored CI workflow * Script verbose environ, dev bootstrap * Port #35409
75 lines
2.0 KiB
YAML
75 lines
2.0 KiB
YAML
spack:
|
|
view: false
|
|
|
|
packages:
|
|
all:
|
|
compiler: [gcc@11.1.0]
|
|
providers:
|
|
blas: [openblas]
|
|
mpi: [mpich]
|
|
target: [x86_64]
|
|
variants: +mpi amdgpu_target=gfx90a cuda_arch=80
|
|
tbb:
|
|
require: "intel-tbb"
|
|
binutils:
|
|
variants: +ld +gold +headers +libiberty ~nls
|
|
boost:
|
|
variants: +python +filesystem +iostreams +system
|
|
elfutils:
|
|
variants: +bzip2 ~nls +xz
|
|
hdf5:
|
|
variants: +fortran +hl +shared
|
|
libfabric:
|
|
variants: fabrics=sockets,tcp,udp,rxm
|
|
libunwind:
|
|
variants: +pic +xz
|
|
mpich:
|
|
variants: ~wrapperrpath
|
|
ncurses:
|
|
variants: +termlib
|
|
openblas:
|
|
variants: threads=openmp
|
|
paraview:
|
|
# Don't build GUI support or GLX rendering for HPC/container deployments
|
|
require: "@5.11 ~qt+osmesa"
|
|
python:
|
|
version: [3.8.13]
|
|
trilinos:
|
|
require: +amesos +amesos2 +anasazi +aztec +boost +epetra +epetraext
|
|
+ifpack +intrepid +intrepid2 +isorropia +kokkos +ml +minitensor +muelu
|
|
+nox +piro +phalanx +rol +rythmos +sacado +stk +shards +shylu +stratimikos
|
|
+teko +tempus +tpetra +trilinoscouplings +zoltan +zoltan2 +superlu-dist gotype=long_long
|
|
xz:
|
|
variants: +pic
|
|
mesa:
|
|
version: [21.3.8]
|
|
|
|
specs:
|
|
- kokkos +rocm amdgpu_target=gfx90a
|
|
- raja +cuda cuda_arch=80 ^cuda@12.0.0
|
|
|
|
# FAILURES
|
|
# - kokkos +wrapper +cuda cuda_arch=80 ^cuda@12.0.0 # https://github.com/spack/spack/issues/35378
|
|
|
|
mirrors: { "mirror": "s3://spack-binaries/develop/gpu-tests" }
|
|
|
|
ci:
|
|
pipeline-gen:
|
|
- build-job:
|
|
image: ecpe4s/ubuntu20.04-runner-x86_64:2023-01-01
|
|
- match_behavior: first
|
|
submapping:
|
|
- match:
|
|
- kokkos +rocm amdgpu_target=gfx90a
|
|
build-job:
|
|
tags: [ "rocm-5.4.0", "mi210" ]
|
|
|
|
- match:
|
|
- kokkos +cuda cuda_arch=80 ^cuda@12.0.0
|
|
- raja +cuda cuda_arch=80 ^cuda@12.0.0
|
|
build-job:
|
|
tags: [ "nvidia-525.85.12", "cuda-12.0", "a100" ]
|
|
|
|
cdash:
|
|
build-group: GPU Testing
|