Skip to content

Commit

Permalink
fdsa
Browse files Browse the repository at this point in the history
  • Loading branch information
KazuOfficial committed Mar 18, 2024
1 parent 9284432 commit 7f459ce
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [windows-latest]

steps:
- name: Checkout repository and submodules
Expand Down Expand Up @@ -51,7 +51,11 @@ jobs:
run: |
mkdir build
cd build
cmake ..
if [ "$RUNNER_OS" == "Windows" ]; then
cmake .. -G "MinGW Makefiles"
else
cmake ..
fi
- name: Build
working-directory: ${{github.workspace}}/build
Expand Down

0 comments on commit 7f459ce

Please sign in to comment.