Skip to content

Commit

Permalink
Prevent debug build from uploading.
Browse files Browse the repository at this point in the history
If you'd like to get a stacktrace, there's a built in stacktrace viewer you can use, or you can compile the source code
  • Loading branch information
MatusGuy authored Sep 28, 2024
1 parent 5502a7d commit c2e78c6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/gnulinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ jobs:
doxygen docs/Doxyfile
- name: Package
if: ${{ matrix.arch != '32' }}
if: matrix.arch != '32'
env:
OS_NAME: ${{ matrix.os }}
ARCH: ${{ matrix.arch }} # TODO: Working Linux 32-bit packaging
Expand All @@ -224,6 +224,7 @@ jobs:
run: ../.ci_scripts/package.sh

- name: Upload AppImage
if: matrix.build_type != 'Debug' && matrix.glbinding == 'OFF'
uses: actions/upload-artifact@v4
with:
name: "${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.build_type }}${{ matrix.glbinding == 'ON' && '-glbinding' || '' }}-appimage"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ jobs:
run: ../.ci_scripts/package.sh

- uses: actions/upload-artifact@v4
if: matrix.build_type != 'Debug' && matrix.glbinding == 'OFF'
with:
name: "${{ matrix.os }}-${{ matrix.build_type }}${{ matrix.glbinding == 'ON' && '-glbinding' || '' }}-dmg"
path: build/upload/*.dmg
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ubuntu-touch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ jobs:
~/.local/bin/clickable build --verbose ${BUILD_TYPE} --arch ${ARCH}
- uses: actions/upload-artifact@v4
if: matrix.build_type != 'Debug'
with:
name: "clickable-${{ matrix.arch }}-${{ matrix.build_type }}-${{ matrix.opengl }}-click"
path: build.clickable/*.click
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ jobs:
mv supertux2* upload/
- uses: actions/upload-artifact@v4
if: matrix.build_type != 'Debug'
with:
name: "wasm32-emscripten-${{ matrix.build_type }}-html"
path: build/upload/*
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ jobs:
"./$Env:BUILD_TYPE/run_tests.exe"
- name: Package MSI Installer
if: matrix.build_type != 'Debug' && matrix.glbinding == 'OFF'
shell: pwsh
working-directory: build
env:
Expand Down Expand Up @@ -148,6 +149,7 @@ jobs:
#>
- name: Upload Portable Package
if: matrix.build_type != 'Debug' && matrix.glbinding == 'OFF'
uses: actions/upload-artifact@v4
with:
name: "windows-${{ matrix.arch }}-${{ matrix.build_type }}${{ matrix.glbinding == 'ON' && '-glbinding' || '' }}-portable"
Expand Down

0 comments on commit c2e78c6

Please sign in to comment.