Skip to content

Commit b86c243

Browse files
committed
ci: Fix caching
1 parent dbe765a commit b86c243

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
id: cache-opencoarrays
2525
uses: actions/cache@v4
2626
with:
27-
path: "${HOME}/apps/OpenCoarrays/${OC_V}"
27+
path: "~/apps/OpenCoarrays/"
2828
key: OC-${{ env.OC_V }}
2929

3030
- name: Install GFortran
@@ -41,8 +41,8 @@ jobs:
4141
wget https://github.com/sourceryinstitute/OpenCoarrays/releases/download/${OC_V}/OpenCoarrays-${OC_V}.tar.gz
4242
tar xzvf OpenCoarrays-${OC_V}.tar.gz
4343
cd OpenCoarrays-${OC_V}
44-
mkdir -p "${HOME}/apps/OpenCoarrays/${OC_V}"
45-
cmake -S . -B build -DCMAKE_INSTALL_PREFIX="${HOME}/apps/OpenCoarrays/${OC_V}"
44+
mkdir -p "~/apps/OpenCoarrays/${OC_V}"
45+
cmake -S . -B build -DCMAKE_INSTALL_PREFIX="~/apps/OpenCoarrays/${OC_V}"
4646
cmake --build build -t install -j
4747
echo "${HOME}/apps/OpenCoarrays/${OC_V}/bin" >> $GITHUB_PATH
4848

0 commit comments

Comments
 (0)