Skip to content

Commit

Permalink
create build dir before running cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
lionkor committed Dec 4, 2023
1 parent 1ad65e2 commit d04e88c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
submodules: "recursive"

- name: Install Dependencies
run: sudo bash ./scripts/debian/1-install-deps.sh
run: |
sudo bash ./scripts/debian/1-install-deps.sh
cmake -E make_directory ${{github.workspace}}/build-linux
- name: Create Build Environment
working-directory: ${{github.workspace}}/build-linux
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ jobs:
submodules: "recursive"

- name: Install Dependencies
run: sudo bash ./scripts/debian/1-install-deps.sh
run: |
sudo bash ./scripts/debian/1-install-deps.sh
cmake -E make_directory ${{github.workspace}}/build-linux
- name: Create Build Environment
working-directory: ${{github.workspace}}/build-linux
Expand Down

0 comments on commit d04e88c

Please sign in to comment.