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:
|
2023-10-11 21:20:51 +00:00
|
|
|
version: [GM8E01_00] # GM8E01_01, GM8E01_48
|
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"
|
2023-10-11 21:20:51 +00:00
|
|
|
- name: Prepare
|
|
|
|
run: cp -R /orig .
|
2022-07-19 00:06:07 +00:00
|
|
|
- name: Build
|
2022-10-07 08:39:43 +00:00
|
|
|
run: |
|
2023-10-11 21:20:51 +00:00
|
|
|
python configure.py --map --version ${{matrix.version}} --compilers /compilers
|
2022-10-07 08:39:43 +00:00
|
|
|
ninja
|
2022-11-26 04:36:25 +00:00
|
|
|
- name: Upload progress
|
2023-10-11 21:20:51 +00:00
|
|
|
if: github.ref == 'refs/heads/main' && matrix.version == 'GM8E01_00'
|
2022-11-26 04:36:25 +00:00
|
|
|
continue-on-error: true
|
|
|
|
env:
|
|
|
|
PROGRESS_API_KEY: ${{secrets.PROGRESS_API_KEY}}
|
|
|
|
run: |
|
2023-10-11 21:20:51 +00:00
|
|
|
python tools/upload_progress.py -b https://progress.decomp.club/ -p prime -v ${{matrix.version}} \
|
|
|
|
build/${{matrix.version}}/progress.json
|
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:
|
2023-10-11 21:20:51 +00:00
|
|
|
name: ${{matrix.version}}_maps
|
|
|
|
path: build/${{matrix.version}}/**/*.MAP
|