diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-01-18 14:22:16 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-04-09 21:13:02 -0500 |
commit | b05c21bb1d41cfc1f94140884059da93a80ce43e (patch) | |
tree | 791d77b3a86d934cefd176e8e65826aa6d6aeae1 /.github/workflows | |
parent | b02124595f46ec9bf35d6b0636c9bf16750fbfb6 (diff) | |
download | redot-cpp-b05c21bb1d41cfc1f94140884059da93a80ce43e.tar.gz |
Implement `verbose` toggle from godot repo
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ada01e9..938afdd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -134,22 +134,22 @@ jobs: - name: Generate godot-cpp sources only run: | - scons platform=${{ matrix.platform }} build_library=no ${{ matrix.flags }} + scons platform=${{ matrix.platform }} verbose=yes build_library=no ${{ matrix.flags }} scons -c - name: Build godot-cpp (debug) run: | - scons platform=${{ matrix.platform }} target=template_debug ${{ matrix.flags }} + scons platform=${{ matrix.platform }} verbose=yes target=template_debug ${{ matrix.flags }} - name: Build test without rebuilding godot-cpp (debug) run: | cd test - scons platform=${{ matrix.platform }} target=template_debug ${{ matrix.flags }} build_library=no + scons platform=${{ matrix.platform }} verbose=yes target=template_debug ${{ matrix.flags }} build_library=no - name: Build test and godot-cpp (release) run: | cd test - scons platform=${{ matrix.platform }} target=template_release ${{ matrix.flags }} + scons platform=${{ matrix.platform }} verbose=yes target=template_release ${{ matrix.flags }} - name: Download latest Godot artifacts uses: dsnopek/action-download-artifact@1322f74e2dac9feed2ee76a32d9ae1ca3b4cf4e9 |