From 74e75e2ebefd93d647d30e3e7b8c7be2dd020293 Mon Sep 17 00:00:00 2001 From: Shahzeb Siddiqui Date: Mon, 20 Nov 2023 08:47:32 -0800 Subject: [PATCH] add spack sanity check for e4s/23.05 by loading e4s module and running `spack find` in each spack environment --- buildspecs/apps/spack/perlmutter_spack_check.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/buildspecs/apps/spack/perlmutter_spack_check.yml b/buildspecs/apps/spack/perlmutter_spack_check.yml index 476e60d..bf30047 100644 --- a/buildspecs/apps/spack/perlmutter_spack_check.yml +++ b/buildspecs/apps/spack/perlmutter_spack_check.yml @@ -12,6 +12,21 @@ buildspecs: regex: stream: stdout exp: '^(0.19.0.dev0)' + spack_sanity_e4s_23.05: + type: script + executor: '(perlmutter|muller).local.(bash|csh)' + tags: [e4s] + run: | + module load e4s/23.05 + spack env list + spack -e gcc find | wc -l + spack -e nvhpc find | wc -l + spack -e cuda find | wc -l + spack -e cce find | wc -l + spack -e data find | wc -l + spack -e math-libs find | wc -l + spack -e tools find | wc -l + maintainers: - 'shahzebsiddiqui'