Skip to content

Commit 58c1bf4

Browse files
committed
Try to solve cmake issues.
1 parent b0e2583 commit 58c1bf4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ jobs:
1919
]
2020
runs-on: ${{ matrix.os }}
2121
steps:
22+
- uses: actions/checkout@v4
2223
- name: Build & Test Project
2324
run: |
24-
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build }} .
25+
mkdir build
26+
cd build
27+
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build }} ..
2528
cmake --build . --config ${{ matrix.build }}
2629
ctest -VV -C ${{ matrix.build }}

0 commit comments

Comments
 (0)