forked from NOAA-EMC/NCEPLIBS-grib_util
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Spack.yml CI (needs +tests variant for g2c dep) (NOAA-EMC#341)
Co-authored-by: Edward Hartnett <[email protected]>
- Loading branch information
1 parent
4d009a5
commit b84e877
Showing
2 changed files
with
53 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# This is a CI workflow for the NCEPLIBS-grib_util project. | ||
# | ||
# This workflow builds grib_util with Spack, including installing with the "--test | ||
# root" option to run the CTest suite. It also has a one-off job that validates | ||
# the recipe by ensuring that every CMake option that should be set in the | ||
# Spack recipe is so set. | ||
# | ||
# Alex Richert, Sep 2023 | ||
name: Spack | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
pull_request: | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
# This job builds with Spack using every combination of variants and runs the CTest suite each time | ||
Spack: | ||
|
||
strategy: | ||
matrix: | ||
os: ["ubuntu-latest"] | ||
openmp: ["+openmp", "~openmp"] | ||
ip_spec: ["^[email protected]", "^[email protected] ^[email protected]"] | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
|
||
- name: "Build Spack package" | ||
uses: NOAA-EMC/ci-test-spack-package@develop | ||
with: | ||
package-name: grib-util | ||
package-variants: +tests ${{ matrix.openmp }} ^[email protected] ^[email protected] ^g2@develop ^g2c@develop +utils +build_v2_api ${{ matrix.ip_spec }} | ||
custom-recipe: spack/package.py | ||
use-repo-cache: true | ||
spack-compiler: gcc | ||
repo-cache-key-suffix: ${{ matrix.os }}-${{ matrix.openmp }}-${{ matrix.ip_spec }}-1 | ||
|
||
|
||
# This job validates the Spack recipe by making sure each cmake build option is represented | ||
recipe-check: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: recipe-check | ||
uses: NOAA-EMC/ci-check-spack-recipe@develop | ||
with: | ||
recipe-file: package/spack/package.py | ||
cmakelists-txt: package/CMakeLists.txt | ||
ignore-list: ENABLE_DOCS,FTP_TEST_FILES,FTP_LARGE_TEST_FILES,FTP_EXTRA_TEST_FILES |
This file was deleted.
Oops, something went wrong.