Skip to content

Commit 99e68a4

Browse files
committed
Update build.yml
1 parent 739105a commit 99e68a4

1 file changed

Lines changed: 2 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -91,19 +91,12 @@ jobs:
9191
- name: Configure CMake (Linux)
9292
if: matrix.os == 'linux'
9393
run: |
94-
cmake -B ${{ github.workspace }}/build \
95-
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} \
96-
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }} \
97-
-DCMAKE_BUILD_TYPE=Release \
98-
-G Ninja \
99-
${{ matrix.cmake_arch }}
94+
cmake -B ${{ github.workspace }}/build -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=Release -G Ninja ${{ matrix.cmake_arch }}
10095
10196
- name: Configure CMake (Windows)
10297
if: matrix.os == 'windows'
10398
run: |
104-
cmake -B ${{ github.workspace }}/build \
105-
-DCMAKE_BUILD_TYPE=Release \
106-
${{ matrix.cmake_arch }}
99+
cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=Release ${{ matrix.cmake_arch }}
107100
108101
- name: Build
109102
run: |

0 commit comments

Comments
 (0)