Skip to content

Commit d01a957

Browse files
committed
CI: Debug path issues
1 parent 67ae00b commit d01a957

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,17 @@ jobs:
4444
mkdir -p "~/apps/OpenCoarrays/${OC_V}"
4545
cmake -S . -B build -DCMAKE_INSTALL_PREFIX="~/apps/OpenCoarrays/${OC_V}"
4646
cmake --build build -t install -j
47-
echo echo "~/apps/OpenCoarrays/${{ env.OC_V }}/bin" >> $GITHUB_PATH
47+
echo "${HOME}/apps/OpenCoarrays/${OC_V}/bin" >> $GITHUB_PATH
4848
4949
- name: Add to PATH if cache hit
5050
if: steps.cache-opencoarrays.outputs.cache-hit == 'true'
51-
run: echo "~/apps/OpenCoarrays/${{ env.OC_V }}/bin" >> $GITHUB_PATH
51+
run: echo "${HOME}/apps/OpenCoarrays/${OC_V}/bin" >> $GITHUB_PATH
5252

5353
- name: Build, run, and test
5454
run: |
55+
ls ~/apps/OpenCoarrays/*
56+
which caf
57+
caf --version
58+
caf --show
5559
fpm run --example get-flag-value -- --input-file some_file_name || fpm run --verbose --example get-flag-value -- --input-file some_file_name
5660
fpm test --compiler caf --runner "cafrun -n 2" || fpm test --compiler caf --runner "cafrun -n 2" --verbose

0 commit comments

Comments
 (0)