diff options
author | David Snopek <dsnopek@gmail.com> | 2024-04-17 10:42:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-17 10:42:40 -0500 |
commit | 9ff49b7b1b084eb8baced50bd4aa0d2b8993f8ef (patch) | |
tree | 75952e74aea2e8cab890b7f3e1e146d76d2831ea /.github/workflows | |
parent | 048f49af39f6062bfbb3f1f7a875ad7d19003377 (diff) | |
parent | b05c21bb1d41cfc1f94140884059da93a80ce43e (diff) | |
download | redot-cpp-9ff49b7b1b084eb8baced50bd4aa0d2b8993f8ef.tar.gz |
Merge pull request #1364 from Repiteo/non-verbose
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 764a06f..8925852 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 |