diff --git a/.github/workflows/linux_builds.yml b/.github/workflows/linux_builds.yml index 810c70c988d..7592e84e04a 100644 --- a/.github/workflows/linux_builds.yml +++ b/.github/workflows/linux_builds.yml @@ -4,7 +4,7 @@ on: [push, pull_request] # Global Settings env: GODOT_BASE_BRANCH: 3.x - SCONSFLAGS: verbose=yes warnings=all werror=yes debug_symbols=no + SCONSFLAGS: verbose=yes warnings=all werror=yes concurrency: group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-linux @@ -42,7 +42,7 @@ jobs: cache-name: linux-template-mono target: release tools: false - sconsflags: module_mono_enabled=yes mono_glue=no + sconsflags: module_mono_enabled=yes mono_glue=no debug_symbols=no build-mono: false artifact: true @@ -125,6 +125,11 @@ jobs: DRI_PRIME=0 xvfb-run ${{ matrix.bin }} --doctool . 2>&1 > /dev/null || true git diff --color --exit-code && ! git ls-files --others --exclude-standard | sed -e 's/^/New doc file missing in PR: /' | grep 'xml$' + - name: Prepare artifact + if: ${{ matrix.artifact }} + run: | + strip bin/godot.* + - name: Upload artifact uses: ./.github/actions/upload-artifact if: ${{ matrix.artifact }} diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml index 041fe837f4d..803b2809c77 100644 --- a/.github/workflows/windows_builds.yml +++ b/.github/workflows/windows_builds.yml @@ -41,7 +41,6 @@ jobs: cache-name: ${{ matrix.cache-name }} continue-on-error: true - - name: Setup python and scons uses: ./.github/actions/godot-deps