Skip to content

Commit 5f14de8

Browse files
committed
Fix alpine CI
1 parent 879e827 commit 5f14de8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ jobs:
6363
run: g++ --version
6464

6565
- name: Configure CMake
66-
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Debug
66+
run: cmake -B build -DCMAKE_BUILD_TYPE=Debug
6767

6868
- name: Build
69-
run: cmake --build ${{github.workspace}}/build
69+
run: cmake --build build
7070

7171
- name: Test
72-
working-directory: ${{github.workspace}}/build
72+
working-directory: build
7373
run: ctest --output-on-failure

0 commit comments

Comments
 (0)