Skip to content

Commit

Permalink
Maybe?
Browse files Browse the repository at this point in the history
  • Loading branch information
alloncm committed Dec 21, 2024
1 parent 44c6008 commit 269eb71
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ env:
CARGO_TERM_COLOR: always

jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
install_deps:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -26,6 +26,9 @@ jobs:
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:
Expand All @@ -39,6 +42,9 @@ jobs:
run: cargo make test

build-rpi:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
needs: install_deps
steps:
Expand All @@ -56,6 +62,9 @@ jobs:
run: cargo make -e RPI=4 rpibm

build-sdl:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
needs: install_deps
steps:
Expand All @@ -71,6 +80,9 @@ jobs:
run: cargo make sdl_dbg

build-libretro:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
needs: install_deps
steps:
Expand Down

0 comments on commit 269eb71

Please sign in to comment.