Skip to content

Commit

Permalink
maybe --verbose flag change to -v?
Browse files Browse the repository at this point in the history
  • Loading branch information
enetheru committed Sep 19, 2024
1 parent 574e083 commit fa0bfc2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,11 @@ jobs:
- name: Build godot-cpp
run: |
cmake -DCMAKE_BUILD_TYPE=Release .
cmake --build . -v -j $(nproc) -t godot-cpp
cmake --build . --verbose -j $(nproc) -t godot-cpp
- name: Build test GDExtension library
run: |
cmake --build . -v -j $(nproc) -t godot-cpp-test
cmake --build . --verbose -j $(nproc) -t godot-cpp-test
linux-cmake-ninja:
name: 🐧 Build (Linux, GCC, CMake Ninja)
Expand All @@ -244,11 +244,11 @@ jobs:
- name: Build godot-cpp
run: |
cmake -DCMAKE_BUILD_TYPE=Release -GNinja .
cmake --build . -v -j $(nproc) -t godot-cpp
cmake --build . --verbose -j $(nproc) -t godot-cpp
- name: Build test GDExtension library
run: |
cmake --build . -v -j $(nproc) -t godot-cpp-test
cmake --build . --verbose -j $(nproc) -t godot-cpp-test
windows-msvc-cmake:
name: 🏁 Build (Windows, MSVC, CMake)
Expand All @@ -262,9 +262,9 @@ jobs:
- name: Build godot-cpp
run: |
cmake -DCMAKE_BUILD_TYPE=Release -G"Visual Studio 16 2019" .
cmake --build . -v -t godot-cpp
cmake --build . --verbose -t godot-cpp
- name: Build test GDExtension library
run: |
cmake --build . -v -t godot-cpp-test
cmake --build . --verbose -t godot-cpp-test

0 comments on commit fa0bfc2

Please sign in to comment.