vbagx/.github/workflows/build.yml

99 lines
2.6 KiB
YAML
Raw Normal View History

2020-07-22 17:21:35 +02:00
name: VBA GX Build
on: [push, pull_request]
jobs:
build:
2022-12-02 17:47:34 +01:00
name: Build
runs-on: ubuntu-latest
2022-01-09 17:42:08 +01:00
strategy:
matrix:
image: ["Wii", "GameCube"]
container: devkitpro/devkitppc:latest
steps:
2022-02-25 19:39:07 +01:00
- name: Checkout vbagx repo
2022-10-21 17:55:44 +02:00
uses: actions/checkout@v3
with:
fetch-depth: 0
2022-01-09 17:42:08 +01:00
- name: Build Wii
if: ${{ matrix.image == 'Wii' }}
run: |
2022-01-09 17:42:08 +01:00
make -f Makefile.wii -j2
2022-02-07 15:04:15 +01:00
- name: Copy Wii artifacts
2022-01-09 17:42:08 +01:00
if: ${{ matrix.image == 'Wii' }}
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
2022-01-09 17:42:08 +01:00
- name: Upload Wii artifacts
2022-10-21 17:55:44 +02:00
uses: actions/upload-artifact@v3
2022-01-09 17:42:08 +01:00
if: ${{ matrix.image == 'Wii' }}
with:
name: VisualBoyAdvanceGX
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/
2022-01-09 17:42:08 +01:00
- name: Upload GameCube artifact
2022-10-21 17:55:44 +02:00
uses: actions/upload-artifact@v3
2022-01-09 17:42:08 +01:00
if: ${{ matrix.image == 'GameCube' }}
with:
name: VisualBoyAdvanceGX-GameCube
path: |
2020-10-25 19:31:39 +01:00
dist/VisualBoyAdvanceGX-GameCube/
2022-12-02 17:47:34 +01:00
release:
name: Release
runs-on: ubuntu-latest
needs: [build]
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
name: Download Artifacts
- uses: actions/download-artifact@v3
with:
path: dist
- name: Re-zip artifacts
run: |
cd dist
rm -r VisualBoyAdvanceGX/vbagx/roms/*
rm -r VisualBoyAdvanceGX/vbagx/saves/*
zip -r VisualBoyAdvanceGX.zip VisualBoyAdvanceGX
zip -r VisualBoyAdvanceGX-GameCube.zip VisualBoyAdvanceGX-GameCube
- name: Update Git Tag
run: |
git tag -f Pre-release
git push -f origin Pre-release
- name: Create Release
uses: ncipollo/release-action@v1
with:
prerelease: true
allowUpdates: true
removeArtifacts: true
replacesArtifacts: false
tag: Pre-release
artifacts: "dist/*.zip"