forked from ps2homebrew/Open-PS2-Loader
-
Notifications
You must be signed in to change notification settings - Fork 4
40 lines (33 loc) · 938 Bytes
/
OPLTestISO.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: CI-OPLTestISO
on:
push:
paths:
- '.github/workflows/OPLTestISO.yml'
- 'labs/opltestiso/**'
workflow_dispatch:
jobs:
build-opltestiso:
runs-on: ubuntu-latest
container: ps2dev/ps2dev:latest
steps:
- name: Install dependencies
run: apk add build-base git zip cdrkit
- name: git checkout
uses: actions/checkout@v3
- run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
git fetch --prune --unshallow
- name: make ISO (8mb IOP RAM support)
run: |
cd labs/opltestiso/
make clean iso SUPPORT_8MB_IOP_RAM=1 ISO=TEST_OPL.00.OPLtester_v0.5_IOPRAM_8mb.iso
- name: make ISO
run: |
cd labs/opltestiso/
make clean iso
- name: Upload release artifact ISO
uses: actions/upload-artifact@v3
with:
name: OPLTESTISO
path: |
labs/opltestiso/*.iso