Skip to content

Commit

Permalink
update Spack.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderRichert-NOAA committed May 22, 2024
1 parent c4f7d13 commit 0d8b101
Showing 1 changed file with 13 additions and 33 deletions.
46 changes: 13 additions & 33 deletions .github/workflows/Spack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,45 +24,25 @@ jobs:
runs-on: ${{ matrix.os }}

steps:

- name: checkout-landsfcutil
uses: actions/checkout@v4
with:
path: landsfcutil

- name: spack-build-and-test
run: |
git clone -c feature.manyFiles=true https://github.com/jcsda/spack
. spack/share/spack/setup-env.sh
spack env create landsfcutil-env
spack env activate landsfcutil-env
cp $GITHUB_WORKSPACE/landsfcutil/spack/package.py $SPACK_ROOT/var/spack/repos/builtin/packages/landsfcutil/package.py
spack develop --no-clone --path $GITHUB_WORKSPACE/landsfcutil landsfcutil@develop
spack add landsfcutil@develop%gcc@11 +pfunit
spack external find cmake gmake m4 python
spack concretize
# Run installation and run pFunit testing
spack install --verbose --fail-fast --test root
# Run 'spack load' to check for obvious errors in setup_run_environment
spack load landsfcutil
ls $LANDSFCUTIL_LIB
ls $LANDSFCUTIL_LIB4
- name: "Build Spack package"
uses: NOAA-EMC/ci-test-spack-package@develop
with:
package-name: bacio
package-variants: +pfunit
custom-recipe: spack/package.py
spack-compiler: gcc
spack-externals: cmake gmake m4 python perl
repo-cache-key-suffix: ${{ matrix.os }}-1

# This job validates the Spack recipe by making sure each cmake build option is represented
recipe-check:
runs-on: ubuntu-latest

steps:

- name: checkout-landsfcutil
uses: actions/checkout@v4
with:
path: landsfcutil

- name: recipe-check
run: |
echo "If this jobs fails, look at the most recently output CMake option below and make sure that option appears in spack/package.py"
for opt in $(grep -ioP '^option\(\K(?!(DUMMY_ENTRY))[^ ]+' $GITHUB_WORKSPACE/landsfcutil/CMakeLists.txt) ; do
echo "Checking for presence of '$opt' CMake option in package.py"
grep -cP "define.+\b${opt}\b" $GITHUB_WORKSPACE/landsfcutil/spack/package.py
done
uses: NOAA-EMC/ci-check-spack-recipe@develop
with:
recipe-file: package/spack/package.py
cmakelists-txt: package/CMakeLists.txt

0 comments on commit 0d8b101

Please sign in to comment.