Skip to content

Commit

Permalink
tag fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgessinger committed Dec 20, 2024
1 parent f7ffaa4 commit 1eae13d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ inputs:
spack_version:
description: 'Version of Spack to use'
required: false
default: '2024-11-13'
default: 'develop-2024-12-15'

runs:
using: 'composite'
Expand Down
4 changes: 3 additions & 1 deletion CI/dependencies/setup_spack.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
#!/bin/bash
set -e
set -u

_spack_version=${SPACK_VERSION:-develop}

if [ ! -d "spack" ]; then
echo "Cloning spack"
git clone -c feature.manyFiles=true https://github.com/spack/spack.git -b ${_spack_version}
git clone --branch ${_spack_version} -c feature.manyFiles=true https://github.com/spack/spack.git
pushd spack > /dev/null
git config user.name 'CI'
git config user.email '<>'
Expand Down

0 comments on commit 1eae13d

Please sign in to comment.