Skip to content

Commit

Permalink
ci: build: run make inside build dir
Browse files Browse the repository at this point in the history
  • Loading branch information
atar13 committed Apr 13, 2024
1 parent 71dfe5c commit 7b8fa54
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 @@ -17,7 +17,7 @@ jobs:
- name: Run CMake
run: cd build && cmake ..
- name: Build
run: make client
run: cd build && make client
linux:
name: Build on Linux (Ubuntu)
runs-on: ubuntu-latest
Expand All @@ -28,4 +28,4 @@ jobs:
- name: Run CMake
run: cd build && cmake ..
- name: Build
run: make client
run: cd build && make client

0 comments on commit 7b8fa54

Please sign in to comment.