Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/build-ci/data/standard.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"intel_compiler": "intel@2021.10.0",
"gcc_compiler": "gcc@13.2.0",
"oneapi_compiler": "oneapi@2025.2.0"
}
"intel_compiler_version": "2021.10.0",
"gcc_compiler_version": "13.2.0",
"oneapi_compiler_version": "2025.2.0",
"fms_version": "2025.03"
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ spack:
packages:
fms:
require:
- '@git.2025.02=2025.02 ~openmp precision=64'
- '@{{ fms_version }} ~openmp precision=64'
gcc:
require:
- '@{{ gcc_compiler_version }}'
all:
require:
- '%{{ gcc_compiler }} target=x86_64'
- '%access_gcc'
- target=x86_64
concretizer:
unify: false
view: false
6 changes: 5 additions & 1 deletion .github/build-ci/manifests/gcc-use_access_fms.spack.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ spack:
# *_compiler is defined in the .github/build-ci/data/standard.json file
- access-generic-tracers@git.{{ ref }} +use_access_fms
packages:
gcc:
require:
- '@{{ gcc_compiler_version }}'
all:
require:
- '%{{ gcc_compiler }} target=x86_64'
- '%access_gcc'
- target=x86_64
concretizer:
unify: false
view: false
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ spack:
packages:
fms:
require:
- '@git.2025.02=2025.02 ~openmp precision=64'
- '@{{ fms_version }} ~openmp precision=64'
intel-oneapi-compilers-classic:
require:
- '@{{ intel_compiler_version }}'
all:
require:
- '%{{ intel_compiler }} target=x86_64'
- '%access_intel'
- target=x86_64
concretizer:
unify: false
view: false
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ spack:
# *_compiler is defined in the .github/build-ci/data/standard.json file
- access-generic-tracers@git.{{ ref }} +use_access_fms
packages:
intel-oneapi-compilers-classic:
require:
- '@{{ intel_compiler_version }}'
all:
require:
- '%{{ intel_compiler }} target=x86_64'
- '%access_intel'
- target=x86_64
concretizer:
unify: false
view: false
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@ spack:
packages:
fms:
require:
- '@git.2025.02=2025.02 ~openmp precision=64'
- '@{{ fms_version }} ~openmp precision=64'
gcc-runtime:
require:
- '%gcc'
- '%access_gcc'
intel-oneapi-compilers:
require:
- '@{{ oneapi_compiler_version }}'
all:
require:
- '%{{ oneapi_compiler }} target=x86_64'
- '%access_oneapi'
- target=x86_64
concretizer:
unify: false
view: false
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ spack:
packages:
gcc-runtime:
require:
- '%gcc'
- '%access_gcc'
intel-oneapi-compilers:
require:
- '@{{ oneapi_compiler_version }}'
all:
require:
- '%{{ oneapi_compiler }} target=x86_64'
- '%access_oneapi'
- target=x86_64
concretizer:
unify: false
view: false
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,10 @@ jobs:
max-parallel: 3
matrix:
file: ${{ fromJson(needs.pre-ci.outputs.matrix) }}
uses: access-nri/build-ci/.github/workflows/ci.yml@v2
uses: access-nri/build-ci/.github/workflows/ci.yml@v3
with:
spack-manifest-path: ${{ matrix.file }}
spack-manifest-data-path: .github/build-ci/data/standard.json
allow-ssh-into-spack-install: false # If true, PR author must ssh into instance to complete job
# spack-packages-ref: main
# spack-config-ref: main
# spack-ref: releases/v0.22
# Default args (including explicit spack/spack-packages/spack-config versions)
# are specified in https://github.com/ACCESS-NRI/build-ci/tree/v3/.github/workflows#inputs
Loading