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:
|
|
|
|
name: ubuntu-20.04
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
container: devkitpro/devkitppc:latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
make -j2
|
2020-10-25 17:19:56 +01:00
|
|
|
|
|
|
|
- name: Copy files
|
|
|
|
run: |
|
|
|
|
cp -f hbc/* executables/VisualBoyAdvanceGX/apps/vbagx/
|
|
|
|
cp -f hbc/* executables/VisualBoyAdvanceGX-GameCube/
|
|
|
|
cp -f README.md executables/VisualBoyAdvanceGX/apps/vbagx/
|
|
|
|
cp -f README.md executables/VisualBoyAdvanceGX-GameCube/
|
2020-07-21 23:11:31 +02:00
|
|
|
|
2020-10-25 17:19:56 +01:00
|
|
|
- name: Upload Wii Build Artifacts
|
2020-07-21 23:11:31 +02:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2020-10-25 17:19:56 +01:00
|
|
|
name: VisualBoyAdvanceGX-Nightly
|
|
|
|
path: |
|
|
|
|
executables/VisualBoyAdvanceGX/
|
|
|
|
!executables/VisualBoyAdvanceGX/apps/vbagx/*.elf
|
|
|
|
|
|
|
|
- name: Upload GameCube Build Artifacts
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: VisualBoyAdvanceGX-Nightly-GameCube
|
|
|
|
path: |
|
|
|
|
executables/VisualBoyAdvanceGX-GameCube/
|
|
|
|
!executables/VisualBoyAdvanceGX-GameCube/*.elf
|