Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
13 changes: 11 additions & 2 deletions .github/build-ci/manifests/gcc.spack.yaml.j2
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
spack:
specs:
- access-test-component @git.{{ ref }}
- access-test-component@git.{{ ref }} %{{ gcc_compiler }} target={{ target }}
packages:
c:
require:
- '{{ gcc_compiler }}'
cxx:
require:
- '{{ gcc_compiler }}'
fortran:
require:
- '{{ gcc_compiler }}'
all:
require:
- '%{{ gcc_compiler }} target={{ target}}'
- 'target={{ target }}'
concretizer:
unify: false
view: false
13 changes: 11 additions & 2 deletions .github/build-ci/manifests/intel.spack.yaml.j2
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
spack:
specs:
- access-test-component @git.{{ ref }}
- access-test-component@git.{{ ref }} %intel-oneapi-compilers@2025.2.0 target={{ target }}
packages:
c:
require:
- 'intel-oneapi-compilers@2025.2.0'
cxx:
require:
- 'intel-oneapi-compilers@2025.2.0'
fortran:
require:
- 'intel-oneapi-compilers@2025.2.0'
all:
require:
- '%{{ intel_compiler }} target={{ target }}'
- 'target={{ target }}'
concretizer:
unify: false
view: false
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,10 @@ jobs:
max-parallel: 5
matrix:
file: ${{ fromJson(needs.pre-ci.outputs.matrix) }}
uses: access-nri/build-ci/.github/workflows/ci.yml@v2
# Testing on github-hosted as the image is not yet updated on self-hosted runners
uses: access-nri/build-ci/.github/workflows/ci.yml@spack-config-81-git-based-spack-packages-repo_TEST
with:
spack-manifest-path: ${{ matrix.file }}
allow-ssh-into-spack-install: false # If true, PR author must ssh into instance to complete job
spack-manifest-data-path: .github/build-ci/data/standard.json
# spack-packages-ref: main
# spack-config-ref: main
# spack-ref: releases/v0.22
container-image-version: :rocky-v1.1-2025.12.000-test
Loading