Skip to content

Commit

Permalink
temporarily suspend extra runners
Browse files Browse the repository at this point in the history
  • Loading branch information
schell committed Aug 25, 2024
1 parent 584bad1 commit b0942ed
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,28 +78,28 @@ jobs:
path: test_output/**/*.png

# various linuxes w/ physical gpus
renderling-test-linux-other:
continue-on-error: true
strategy:
matrix:
label: [intel, amd, pi4]
runs-on: ${{ matrix.label }}
steps:
- uses: actions/checkout@v2
- uses: moonrepo/setup-rust@v1
with:
cache: false
- uses: Swatinem/rust-cache@v2
with:
cache-all-crates: "true"
cache-on-failure: "true"
- run: apt-get -q -y update && apt-get -q -y install mesa-vulkan-drivers libvulkan1 vulkan-tools vulkan-validationlayers
- run: cargo test -j 1 -- --test-threads=1 --nocapture
continue-on-error: ${{ matrix.label == 'pi4' }}
env:
RUST_BACKTRACE: 1
- uses: actions/upload-artifact@v4
if: always()
with:
name: test-output-${{ matrix.label }}
path: test_output/**/*.png
# renderling-test-linux-other:
# continue-on-error: true
# strategy:
# matrix:
# label: [intel, amd, pi4]
# runs-on: ${{ matrix.label }}
# steps:
# - uses: actions/checkout@v2
# - uses: moonrepo/setup-rust@v1
# with:
# cache: false
# - uses: Swatinem/rust-cache@v2
# with:
# cache-all-crates: "true"
# cache-on-failure: "true"
# - run: apt-get -q -y update && apt-get -q -y install mesa-vulkan-drivers libvulkan1 vulkan-tools vulkan-validationlayers
# - run: cargo test -j 1 -- --test-threads=1 --nocapture
# continue-on-error: ${{ matrix.label == 'pi4' }}
# env:
# RUST_BACKTRACE: 1
# - uses: actions/upload-artifact@v4
# if: always()
# with:
# name: test-output-${{ matrix.label }}
# path: test_output/**/*.png

0 comments on commit b0942ed

Please sign in to comment.