diff options
| author | Aetias <aetias@outlook.com> | 2025-03-09 17:11:54 +0100 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2025-03-09 17:11:54 +0100 |
| commit | e0281e00fdf11c4b784ef8bd43358ee65b9cbd86 (patch) | |
| tree | 8d9e634e19dec2f8b3a8a0372cc77bc0bdc19412 /.github | |
| parent | f7e2705e6bb4141cdab475d4ff0fe59282ba177f (diff) | |
Add build.yml
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..427a94e2 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,30 @@ +name: Build + +on: + push: + pull_request: + +jobs: + build: + container: ghcr.io/aetiashax/ph-build:main + + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + version: [eur, usa] + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build + run: | + python tools/configure.py ${{ matrix.version }} -w wibo --compiler /mwccarm + ninja arm9 report check + + - name: Upload report + uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.version }}_report + path: build/${{ matrix.version }}/report.json |
