Skip to content

Commit

Permalink
ci: Fix unused CMAKE_BUILD_TYPE on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Natter committed Mar 2, 2024
1 parent 88454a3 commit aa40427
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ jobs:
- name: Start application meson
run: ./build-meson-native/app
- name: Setup build directory cmake
run: cmake -DCMAKE_BUILD_TYPE=Release -S . -B build-cmake-native
run: cmake -S . -B build-cmake-native
- name: Build application cmake
run: cmake --build build-cmake-native
run: cmake --build build-cmake-native --config Release
- name: Start application cmake
run: ./build-cmake-native/Release/app.exe

0 comments on commit aa40427

Please sign in to comment.