Skip to content

Commit

Permalink
ci: build: actually put unix makefiles in windows server
Browse files Browse the repository at this point in the history
      run: cd build && cmake ..
  • Loading branch information
atar13 committed Apr 13, 2024
1 parent 01c67cd commit 3d0984f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Create build dir
run: mkdir -p build
- name: Run CMake
run: cd build && cmake ..
run: cd build && cmake -G "Unix Makefiles" ..
- name: Build
run: cd build && make server
server-linux:
Expand All @@ -48,6 +48,6 @@ jobs:
- name: Create build dir
run: mkdir -p build
- name: Run CMake
run: cd build && cmake -G "Unix Makefiles" ..
run: cd build && cmake ..
- name: Build
run: cd build && make server

0 comments on commit 3d0984f

Please sign in to comment.