Skip to content

Commit 04a2303

Browse files
committed
CI cmake alternative
Signed-off-by: falkTX <falktx@falktx.com>
1 parent a479ea8 commit 04a2303

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jobs:
4242
shell: bash
4343
run: |
4444
source PawPaw/local.env ${{ matrix.target }}
45-
cmake -S . -B build
46-
$(which cmake) --build build -j
45+
${CMAKE} -S . -B build
46+
cmake --build build -j
4747
4848
macos:
4949
strategy:
@@ -73,8 +73,8 @@ jobs:
7373
shell: bash
7474
run: |
7575
source PawPaw/local.env ${{ matrix.target }}
76-
cmake -S . -B build
77-
$(which cmake) --build build -j
76+
${CMAKE} -S . -B build
77+
cmake --build build -j
7878
7979
windows:
8080
strategy:
@@ -113,5 +113,5 @@ jobs:
113113
shell: bash
114114
run: |
115115
source PawPaw/local.env ${{ matrix.target }}
116-
cmake -S . -B build
117-
$(which cmake) --build build -j
116+
${CMAKE} -S . -B build
117+
cmake --build build -j

0 commit comments

Comments
 (0)