diff options
author | John W. Parent <45471568+johnwparent@users.noreply.github.com> | 2024-05-16 19:00:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-16 17:00:02 -0600 |
commit | 81fe460194477fb54dcbb83edb9c0a5abf406539 (patch) | |
tree | de0fd64552d60544951664d60ce56fb76d287a77 /bin/spack.ps1 | |
parent | b894f996c0401b32ca12fcbf5362eee7d0c84652 (diff) | |
download | spack-81fe460194477fb54dcbb83edb9c0a5abf406539.tar.gz spack-81fe460194477fb54dcbb83edb9c0a5abf406539.tar.bz2 spack-81fe460194477fb54dcbb83edb9c0a5abf406539.tar.xz spack-81fe460194477fb54dcbb83edb9c0a5abf406539.zip |
Gitlab CI: Windows Configs (#43967)
Add support for Gitlab CI on Windows
This PR adds the config changes required to configure and execute
Gitlab pipelines running Windows builds on Windows runners using
the existing Gitlab CI infrastructure (and newly added Windows
infrastructure).
* Adds support for generating child pipelines dispatched to Windows runners
* Refactors the relevant pre-scripts, scripts, and post scripts to be compatible with Windows
* Adds Windows config section describing Windows jobs
* Adds VTK as Windows build stack (to be expanded later)
* Modifies proj to build on Windows
* Refactors Windows rpath symlinking to avoid system libs and externals
---------
Co-authored-by: Ryan Krattiger <ryan.krattiger@kitware.com>
Co-authored-by: Mike VanDenburgh <michael.vandenburgh@kitware.com>
Co-authored-by: Todd Gamblin <tgamblin@llnl.gov>
Co-authored-by: Scott Wittenburg <scott.wittenburg@kitware.com>
Diffstat (limited to 'bin/spack.ps1')
-rw-r--r-- | bin/spack.ps1 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/spack.ps1 b/bin/spack.ps1 index 5a82b0b620..1ceeb0a250 100644 --- a/bin/spack.ps1 +++ b/bin/spack.ps1 @@ -144,3 +144,5 @@ switch($SpackSubCommand) "unload" {Invoke-SpackLoad} default {python "$Env:SPACK_ROOT/bin/spack" $SpackCMD_params $SpackSubCommand $SpackSubCommandArgs} } + +exit $LASTEXITCODE |