2020-07-22 17:21:35 +02:00
|
|
|
name: VBA GX Build
|
2020-07-21 23:11:31 +02:00
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-10-04 17:03:56 +02:00
|
|
|
name: Build VBA GX
|
2020-07-21 23:11:31 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2022-01-09 17:42:08 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
image: ["Wii", "GameCube"]
|
2020-07-21 23:11:31 +02:00
|
|
|
container: devkitpro/devkitppc:latest
|
|
|
|
|
|
|
|
steps:
|
2022-02-25 19:39:07 +01:00
|
|
|
- name: Checkout vbagx repo
|
|
|
|
uses: actions/checkout@v1
|
2020-07-21 23:11:31 +02:00
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
|
2022-01-09 17:42:08 +01:00
|
|
|
- name: Build Wii
|
|
|
|
if: ${{ matrix.image == 'Wii' }}
|
2020-07-21 23:11:31 +02:00
|
|
|
run: |
|
2022-01-09 17:42:08 +01:00
|
|
|
make -f Makefile.wii -j2
|
2020-10-25 17:19:56 +01:00
|
|
|
|
2022-02-07 15:04:15 +01:00
|
|
|
- name: Copy Wii artifacts
|
2022-01-09 17:42:08 +01:00
|
|
|
if: ${{ matrix.image == 'Wii' }}
|
2020-10-25 17:19:56 +01:00
|
|
|
run: |
|
2020-10-25 19:31:39 +01:00
|
|
|
mkdir -p dist/VisualBoyAdvanceGX/apps/vbagx
|
|
|
|
mkdir -p dist/VisualBoyAdvanceGX/vbagx/roms
|
|
|
|
mkdir dist/VisualBoyAdvanceGX/vbagx/saves
|
2020-12-24 19:11:46 +01:00
|
|
|
touch dist/VisualBoyAdvanceGX/vbagx/roms/romsdir
|
|
|
|
touch dist/VisualBoyAdvanceGX/vbagx/saves/savesdir
|
2020-10-25 19:31:39 +01:00
|
|
|
cp hbc/* dist/VisualBoyAdvanceGX/apps/vbagx/
|
|
|
|
cp executables/vbagx-wii.dol dist/VisualBoyAdvanceGX/apps/vbagx/boot.dol
|
2020-07-21 23:11:31 +02:00
|
|
|
|
2022-01-09 17:42:08 +01:00
|
|
|
- name: Upload Wii artifacts
|
2020-07-21 23:11:31 +02:00
|
|
|
uses: actions/upload-artifact@v2
|
2022-01-09 17:42:08 +01:00
|
|
|
if: ${{ matrix.image == 'Wii' }}
|
2020-07-21 23:11:31 +02:00
|
|
|
with:
|
2020-10-25 19:46:10 +01:00
|
|
|
name: VisualBoyAdvanceGX
|
2020-10-25 17:19:56 +01:00
|
|
|
path: |
|
2020-10-25 19:31:39 +01:00
|
|
|
dist/VisualBoyAdvanceGX/
|
2022-01-09 17:42:08 +01:00
|
|
|
|
|
|
|
- name: Build GameCube
|
|
|
|
if: ${{ matrix.image == 'GameCube' }}
|
|
|
|
run: |
|
|
|
|
make -f Makefile.gc -j2
|
|
|
|
|
|
|
|
- name: Copy GameCube artifact
|
|
|
|
if: ${{ matrix.image == 'GameCube' }}
|
|
|
|
run: |
|
|
|
|
mkdir -p dist/VisualBoyAdvanceGX-GameCube
|
|
|
|
cp executables/vbagx-gc.dol dist/VisualBoyAdvanceGX-GameCube/
|
2020-10-25 17:19:56 +01:00
|
|
|
|
2022-01-09 17:42:08 +01:00
|
|
|
- name: Upload GameCube artifact
|
2020-10-25 17:19:56 +01:00
|
|
|
uses: actions/upload-artifact@v2
|
2022-01-09 17:42:08 +01:00
|
|
|
if: ${{ matrix.image == 'GameCube' }}
|
2020-10-25 17:19:56 +01:00
|
|
|
with:
|
2020-10-25 19:46:10 +01:00
|
|
|
name: VisualBoyAdvanceGX-GameCube
|
2020-10-25 17:19:56 +01:00
|
|
|
path: |
|
2020-10-25 19:31:39 +01:00
|
|
|
dist/VisualBoyAdvanceGX-GameCube/
|