We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c8d25e commit 72a0519Copy full SHA for 72a0519
1 file changed
.github/workflows/ci.yml
@@ -40,7 +40,6 @@ jobs:
40
41
- name: Build Project
42
run: |
43
- ls /home/runner/work/
44
mkdir build
45
cd build
46
if [ "${{ matrix.compiler }}" = "gcc" ]; then
@@ -50,12 +49,12 @@ jobs:
50
49
fi
51
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DDOCS=FALSE ..
52
make -j$(nproc)
53
- working-directory: /home/runner/work/hrmp/hrmp
+ working-directory: ${{ github.workspace }}
54
55
- name: Upload Build and Run Logs as Artifacts
56
if: always()
57
uses: actions/upload-artifact@v5
58
with:
59
name: logs-${{ matrix.compiler }}-${{ matrix.build_type }}
60
- path: /home/runner/work/hrmp/hrmp/build/log
+ path: ${{ github.workspace }}/build/log
61
retention-days: 60
0 commit comments