Skip to content

Commit

Permalink
CI: fix setting SST_DEPS_USER_MODE
Browse files Browse the repository at this point in the history
  • Loading branch information
berquist committed Aug 27, 2024
1 parent f171ece commit 06a7867
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ jobs:
key: ${{ matrix.os }}-${{ matrix.build-type }}
- name: set env
run: |
echo "SST_DEPS_USER_DIR=$(realpath "${GITHUB_WORKSPACE}/../${GITHUB_RUN_ID}_${GITHUB_RUN_NUMBER}_${GITHUB_RUN_ATTEMPT}")" >> "${GITHUB_ENV}"
sst_deps_user_dir="${GITHUB_WORKSPACE}/../${GITHUB_RUN_ID}_${GITHUB_RUN_NUMBER}_${GITHUB_RUN_ATTEMPT}"
mkdir -p "${sst_deps_user_dir}"
SST_DEPS_USER_DIR="$(realpath "${sst_deps_user_dir}")"
echo "SST_DEPS_USER_DIR=${SST_DEPS_USER_DIR}" >> "${GITHUB_ENV}"
- name: fetch elements dependencies
run: |
pristine="${SST_DEPS_USER_DIR}"/sstDeps/src/pristine
Expand Down

0 comments on commit 06a7867

Please sign in to comment.