diff options
author | Wouter Deconinck <wdconinc@gmail.com> | 2024-03-26 21:13:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-26 21:13:32 -0500 |
commit | 6c912b30a2b7c3cc13878ca7ab385d88636f239b (patch) | |
tree | 6af6183c837484acbc109ead624cb0d015df7c5c /.devcontainer/devcontainer.json | |
parent | f4da453f6b512dd98c3d9046272596c8f0909a32 (diff) | |
download | spack-6c912b30a2b7c3cc13878ca7ab385d88636f239b.tar.gz spack-6c912b30a2b7c3cc13878ca7ab385d88636f239b.tar.bz2 spack-6c912b30a2b7c3cc13878ca7ab385d88636f239b.tar.xz spack-6c912b30a2b7c3cc13878ca7ab385d88636f239b.zip |
Codespaces support for rapid PR evaluation (#41901)
* Create devcontainer.json
* Ensure codespace can be setup for current branch
* fix: find compilers in site scope
* fix: use cloud_pipelines ubuntu20.04 image
* fix: spack config --scope site add
* fix: use develop, not develop-root mirror
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r-- | .devcontainer/devcontainer.json | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..ec4c2690b7 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "image": "ghcr.io/spack/ubuntu20.04-runner-amd64-gcc-11.4:2023.08.01", + "postCreateCommand": "./.devcontainer/postCreateCommand.sh" +} |