Skip to content

Commit

Permalink
Add matrix and dependency download to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps authored Feb 7, 2024
1 parent 80e5011 commit 2b6acda
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
eth: ["ETH=0", "ETH=1"]
bdmstuff: ["EXFAT=0", "EXFAT=1", "EXFAT=1 MX4SIO=1"]
ds34: ["DS34=0", "DS34=1"]
coh: ["COH=0", "COH=1"]
runs-on: ubuntu-latest
container: ps2dev/ps2dev:v1.0
steps:
Expand All @@ -30,6 +31,14 @@ jobs:
git config --global --add safe.directory "$GITHUB_WORKSPACE"
git fetch --prune --unshallow
- name: get romimg dependency
if: matrix.coh == 'COH=1'
run: |
wget https://github.com/israpps/ROMIMG/releases/download/Latest/ROMIMG-linux-x86.7z -O ROMIMG.7z
mkdir tools
7z e ROMIMG.7z -otools/ * -r
rm -f ROMIMG.7z
- name: Compile wLaunchELF
run: |
make rebuild ${{ matrix.eth }} ${{ matrix.sior }} ${{ matrix.bdmstuff }} ${{ matrix.ds34 }} ${{ matrix.xfrom }} ${{ github.event.inputs.make_args }}
Expand Down

0 comments on commit 2b6acda

Please sign in to comment.