diff options
author | John W. Parent <45471568+johnwparent@users.noreply.github.com> | 2024-07-13 01:07:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-12 23:07:45 -0600 |
commit | e2844e2feff654368c34092aaeb3aab3e6e6483f (patch) | |
tree | 924a0604a671fb1d97c05f12b6660e82983d0118 /.github | |
parent | 2ca733bbc148d1ecf27a40ecde294cb8a6e922eb (diff) | |
download | spack-e2844e2feff654368c34092aaeb3aab3e6e6483f.tar.gz spack-e2844e2feff654368c34092aaeb3aab3e6e6483f.tar.bz2 spack-e2844e2feff654368c34092aaeb3aab3e6e6483f.tar.xz spack-e2844e2feff654368c34092aaeb3aab3e6e6483f.zip |
bootstrap ci: add exit code validation for windows (#45221)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/bootstrap.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/bootstrap.yml b/.github/workflows/bootstrap.yml index 9ce6ca1032..a3cf808dd2 100644 --- a/.github/workflows/bootstrap.yml +++ b/.github/workflows/bootstrap.yml @@ -71,12 +71,14 @@ jobs: SETUP_SCRIPT_EXT: ${{ matrix.runner == 'windows-latest' && 'ps1' || 'sh' }} SETUP_SCRIPT_SOURCE: ${{ matrix.runner == 'windows-latest' && './' || 'source ' }} USER_SCOPE_PARENT_DIR: ${{ matrix.runner == 'windows-latest' && '$env:userprofile' || '$HOME' }} + VALIDATE_LAST_EXIT: ${{ matrix.runner == 'windows-latest' && './share/spack/qa/validate_last_exit.ps1' || '' }} run: | ${{ env.SETUP_SCRIPT_SOURCE }}share/spack/setup-env.${{ env.SETUP_SCRIPT_EXT }} spack bootstrap disable github-actions-v0.5 spack bootstrap disable github-actions-v0.4 spack external find --not-buildable cmake bison spack -d solve zlib + ${{ env.VALIDATE_LAST_EXIT }} tree ${{ env.USER_SCOPE_PARENT_DIR }}/.spack/bootstrap/store/ gnupg-sources: |