2022-04-08 21:29:48 +00:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-01-24 00:23:34 +00:00
|
|
|
container: ghcr.io/primedecomp/build:main
|
2024-06-24 04:34:51 +00:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
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
|
2024-06-24 04:34:51 +00:00
|
|
|
|
2022-04-08 21:29:48 +00:00
|
|
|
steps:
|
2024-06-24 04:34:51 +00:00
|
|
|
# Checkout the repository (shallow clone)
|
2022-07-19 00:06:07 +00:00
|
|
|
- name: Checkout
|
2024-06-24 04:34:51 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-12-19 05:04:46 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: recursive
|
2024-06-24 04:34:51 +00:00
|
|
|
|
|
|
|
# Set Git config
|
2023-01-31 06:02:59 +00:00
|
|
|
- name: Git config
|
|
|
|
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
2024-06-24 04:34:51 +00:00
|
|
|
|
|
|
|
# Copy the original files to the workspace
|
2023-10-11 21:20:51 +00:00
|
|
|
- name: Prepare
|
|
|
|
run: cp -R /orig .
|
2024-06-24 04:34:51 +00:00
|
|
|
|
|
|
|
# Build the project
|
2022-07-19 00:06:07 +00:00
|
|
|
- name: Build
|
2022-10-07 08:39:43 +00:00
|
|
|
run: |
|
2024-06-24 04:34:51 +00:00
|
|
|
python configure.py --map --version ${{ matrix.version }} \
|
|
|
|
--binutils /binutils --compilers /compilers
|
2024-09-05 04:03:20 +00:00
|
|
|
ninja all_source build/${{ matrix.version }}/progress.json \
|
|
|
|
build/${{ matrix.version }}/report.json
|
2024-06-24 04:34:51 +00:00
|
|
|
|
|
|
|
# Upload progress if we're on the main branch
|
2022-11-26 04:36:25 +00:00
|
|
|
- name: Upload progress
|
2024-06-24 04:34:51 +00:00
|
|
|
if: github.ref == 'refs/heads/main'
|
2022-11-26 04:36:25 +00:00
|
|
|
continue-on-error: true
|
|
|
|
env:
|
2024-06-24 04:34:51 +00:00
|
|
|
PROGRESS_SLUG: prime
|
|
|
|
PROGRESS_API_KEY: ${{ secrets.PROGRESS_API_KEY }}
|
2022-11-26 04:36:25 +00:00
|
|
|
run: |
|
2024-06-24 04:34:51 +00:00
|
|
|
python tools/upload_progress.py -b https://progress.decomp.club/ \
|
|
|
|
-p $PROGRESS_SLUG -v ${{ matrix.version }} \
|
|
|
|
build/${{ matrix.version }}/progress.json
|
|
|
|
|
|
|
|
# Upload map files
|
2022-07-19 00:06:07 +00:00
|
|
|
- name: Upload map
|
2024-06-24 04:34:51 +00:00
|
|
|
uses: actions/upload-artifact@v4
|
2022-07-19 00:06:07 +00:00
|
|
|
with:
|
2024-06-24 04:34:51 +00:00
|
|
|
name: ${{ matrix.version }}_maps
|
|
|
|
path: build/${{ matrix.version }}/**/*.MAP
|
2024-09-05 04:03:20 +00:00
|
|
|
|
|
|
|
# Upload progress report
|
|
|
|
- name: Upload report
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: ${{ matrix.version }}_report
|
|
|
|
path: build/${{ matrix.version }}/report.json
|