Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
enetheru committed Mar 12, 2024
1 parent 8c27ff8 commit 9f39da2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ jobs:
- name: Build godot-cpp
run: |
cmake -LH --build .
cmake -j $(nproc) --build .
cmake -B . -LH
cmake --build . -j $(nproc)
# Configure and build godot-cpp/tesst
- name: Configure godot-cpp/test
Expand All @@ -124,8 +124,8 @@ jobs:
- name: Build godot-cpp/test
run: |
cmake -LH -B build-test
cmake -j $(nproc) --build build-test
cmake -B build-test -LH
cmake --build build-test -j $(nproc)
# Linux-gcc-Linux
build:
Expand Down

0 comments on commit 9f39da2

Please sign in to comment.