Skip to content

Commit

Permalink
CI: Update Wine builds to use the correct cmake alias
Browse files Browse the repository at this point in the history
  • Loading branch information
flibitijibibo committed Oct 18, 2024
1 parent b9e35b2 commit d3ae1bf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,16 @@ jobs:
run: ninja -C release-x64

- name: CMake configure (Debug Wine)
run: cmake -B debugwine -G Ninja . -DCMAKE_BUILD_TYPE=Debug -DPLATFORM_WIN32=ON
run: mingw32-cmake -B debugwine -G Ninja . -DCMAKE_BUILD_TYPE=Debug -DPLATFORM_WIN32=ON

- name: Build (Debug Wine)
run: cmake --build debugwine
run: ninja -C debugwine

- name: CMake configure (Release Wine)
run: cmake -B releasewine -G Ninja . -DCMAKE_BUILD_TYPE=Release -DPLATFORM_WIN32=ON
run: mingw32-cmake -B releasewine -G Ninja . -DCMAKE_BUILD_TYPE=Release -DPLATFORM_WIN32=ON

- name: Build (Release Wine)
run: cmake --build releasewine
run: ninja -C releasewine

- name: Archive build result 32-bit
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit d3ae1bf

Please sign in to comment.