|
3 | 3 | # It describes a set of packages to be installed, along with |
4 | 4 | # configuration settings. |
5 | 5 | spack: |
6 | | - # TODO: This section is used primarily to provide variations to a model based on deployment target. Delete if not required. |
7 | | - # definitions: |
8 | | - # This is the root spack bundle that contains the model |
9 | | - # - ROOT_PACKAGE: |
10 | | - # - MODEL@git.GIT_REF=SPACK_VERSION |
11 | | - |
12 | | - # Mutually-exclusive Compiler and Target definitions (assumes DEPLOYMENT_TARGET set) |
13 | | - # - when: env['DEPLOYMENT_TARGET'] == 'Gadi' |
14 | | - # compiler_target: ['%intel@19.0.5.281 target=x86_64_v4'] |
15 | | - # More mutually-exclusive definitions can be made... |
16 | | - # Default |
17 | | - # - when: "'DEPLOYMENT_TARGET' not in env" |
18 | | - # compiler_targets: ['intel@2021.2.0 target=x86_64'] |
19 | | - |
20 | | - # This is where the single definitions of ROOT_PACKAGE and compiler/target are |
21 | | - # matrixed together to form a single spec: MODEL@git.GIT_REF=SPACK_VERSION %intel@2021.2.0 target=x86_64 |
22 | | - # - ROOT_SPEC: |
23 | | - # - matrix: |
24 | | - # - [$ROOT_PACKAGE] |
25 | | - # - [$%compiler_target] |
26 | 6 | specs: |
27 | | - # The root Spack Bundle Recipe (SBR) for the model and overall version of |
28 | | - # the deployment: |
29 | | - # TODO: Replace the MODEL, GIT_REF and SPACK_VERSION, if there is |
30 | | - # only one deployment target |
31 | | - # - MODEL@git.GIT_REF=SPACK_VERSION |
32 | | - # Alternatively, if there are multiple deployment targets that require |
33 | | - # different compilers/variants, use the above definitions section and: |
34 | | - # - $ROOT_SPEC |
| 7 | + - coastri-roms@git.2025.06.000 |
35 | 8 | packages: |
36 | 9 | # Specification of dependency versions and variants. CI/CD requires that |
37 | | - # the first element of the require is only a version: |
38 | | - # TODO: Specify versions and variants of dependencies as required. |
39 | | - # openmpi: |
40 | | - # require: |
41 | | - # - '@4.1.5' |
| 10 | + # the first element of the require is only a version |
| 11 | + roms: |
| 12 | + require: |
| 13 | + - '@git.c1c5efd8276dfa67029363499ff7370b4582c47b' |
| 14 | + |
| 15 | + openmpi: |
| 16 | + require: |
| 17 | + - '@4.1.4' |
| 18 | + |
| 19 | + netcdf-c: |
| 20 | + require: |
| 21 | + - '@4.7.3' |
42 | 22 |
|
43 | 23 | # Specifications that apply to all packages |
44 | 24 | all: |
45 | | - # TODO: Specify compiler/targets for all packages |
46 | | - # require: |
47 | | - # - '%intel@2021.10.0' |
48 | | - # - 'target=x86_64' |
| 25 | + require: |
| 26 | + - '%intel@2021.8.0' |
| 27 | + - 'target=x86_64' |
49 | 28 | view: true |
50 | 29 | concretizer: |
51 | 30 | unify: true |
0 commit comments