mirror of
https://github.com/encounter/ph.git
synced 2026-03-30 11:34:37 -07:00
37 lines
751 B
YAML
37 lines
751 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
container: ghcr.io/zeldaret/ph-build:main
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
version: [eur, usa]
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Prepare
|
|
run: |
|
|
mv /extract/* ./extract
|
|
|
|
- name: Build
|
|
run: |
|
|
python tools/configure.py ${{ matrix.version }} -w wibo --compiler /mwccarm --no-extract
|
|
ninja arm9 report check
|
|
|
|
- name: Upload report
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ matrix.version }}_report
|
|
path: build/${{ matrix.version }}/report.json
|