Update OPLTestISO.yml #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |