vbagx/.github/workflows/continuous-integration-workflow.yml

42 lines
1.1 KiB
YAML
Raw Normal View History

2020-07-22 17:21:35 +02:00
name: VBA GX Build
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
- 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/
- name: Upload Wii Build Artifacts
uses: actions/upload-artifact@v2
with:
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