Skip to content

Commit 3eae92c

Browse files
committed
set the cmake build to out-of-source
1 parent f4b05ac commit 3eae92c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ jobs:
5252
run: brew install gcc@${GCC_V} || brew upgrade gcc@${GCC_V} || true
5353

5454
- name: Configure with CMake
55-
run: cmake -Wdev -S . -B . # We should build out of source but loadtxt needs fixing
55+
run: cmake -Wdev -S . -B build # We should build out of source but loadtxt needs fixing
5656

5757
- name: Build and compile
58-
run: cmake --build . || cmake --build . --verbose --parallel 1
58+
run: cmake --build build || cmake --build build --verbose --parallel 1
5959

6060
- name: test
61-
run: cmake --build . --target test
61+
run: cmake --build build --target test

0 commit comments

Comments
 (0)