prime/.github/workflows/build.yml

37 lines
1009 B
YAML
Raw Normal View History

2022-04-08 21:29:48 +00:00
name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
2023-01-24 00:23:34 +00:00
container: ghcr.io/primedecomp/build:main
2022-08-22 14:16:37 +00:00
strategy:
2022-08-22 14:18:25 +00:00
fail-fast: false
2022-08-22 14:16:37 +00:00
matrix:
2022-08-23 03:54:30 +00:00
version: [0, 1, kor]
2022-04-08 21:29:48 +00:00
steps:
2022-07-19 00:06:07 +00:00
- name: Checkout
uses: actions/checkout@v3
2023-01-31 06:02:59 +00:00
- name: Git config
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
2022-07-19 00:06:07 +00:00
- name: Build
2022-10-07 08:39:43 +00:00
run: |
2023-01-24 00:23:34 +00:00
python configure.py --map --version ${{matrix.version}} --compilers /compilers/GC
2022-10-07 08:39:43 +00:00
ninja
2022-11-26 04:36:25 +00:00
- name: Upload progress
2022-11-28 05:02:10 +00:00
if: github.ref == 'refs/heads/main'
2022-11-26 04:36:25 +00:00
continue-on-error: true
env:
PROGRESS_API_KEY: ${{secrets.PROGRESS_API_KEY}}
run: |
2023-01-24 00:23:34 +00:00
python tools/upload-progress.py -b https://progress.deco.mp/ -p prime -v ${{matrix.version}} \
2022-11-26 04:36:25 +00:00
build/mp1.${{matrix.version}}/main.dol.progress
2022-07-19 00:06:07 +00:00
- name: Upload map
2023-01-24 00:23:34 +00:00
uses: actions/upload-artifact@v3
2022-07-19 00:06:07 +00:00
with:
2022-08-22 14:21:58 +00:00
name: MetroidPrime-${{matrix.version}}.MAP
path: build/*/MetroidPrime.MAP