Skip to content

Commit

Permalink
Revert multi job pipeline and test for failures?
Browse files Browse the repository at this point in the history
  • Loading branch information
alloncm committed Dec 21, 2024
1 parent 269eb71 commit cb7d151
Showing 1 changed file with 16 additions and 64 deletions.
80 changes: 16 additions & 64 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ env:
CARGO_TERM_COLOR: always

jobs:
install_deps:
build-and-test-all-targets:

continue-on-error: true
if: always()
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
Expand All @@ -24,73 +27,22 @@ jobs:
C:\\Users\\runneradmin\\.cargo\\bin"
- name: install cargo make
run: cargo install --no-default-features --locked --version 0.37.23 cargo-make

test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
needs: install_deps
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ""
cache-directories: "/home/runner/.cargo/bin
C:\\Users\\runneradmin\\.cargo\\bin"
- name: Run tests
run: cargo make test

build-rpi:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
needs: install_deps
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ""
cache-directories: "/home/runner/.cargo/bin
C:\\Users\\runneradmin\\.cargo\\bin"
- name: Build
# for some reason the sdl installation causing this to fail (some error about not finding glibc) so this should before the sdl
# for some reason the sdl installation causing this to fail (some error about not finding glibc) so this should before the sdl
- name: Build rpi os
continue-on-error: true
if: ${{ matrix.os == 'ubuntu-latest' }} # This fails on windows since it does not have docker installed
run: cargo make rpios
- name: Build rpi baremetal
run: cargo make -e RPI=4 rpibm

build-sdl:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
needs: install_deps
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ""
cache-directories: "/home/runner/.cargo/bin
C:\\Users\\runneradmin\\.cargo\\bin"
- name: Build
- name: Build sdl
continue-on-error: true
run: cargo make sdl
- name: Build with debugger
- name: Build sdl with debugger
continue-on-error: true
run: cargo make sdl_dbg

build-libretro:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
needs: install_deps
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ""
cache-directories: "/home/runner/.cargo/bin
C:\\Users\\runneradmin\\.cargo\\bin"
- name: Build libretro
run: cargo make libretro_desktop
continue-on-error: true
run: cargo make libretro_desktop
- name: Build rpi baremetal
continue-on-error: true
run: cargo make -e RPI=4 rpibm

0 comments on commit cb7d151

Please sign in to comment.