Update CI workflows (#1)

* update ci workflows
This commit is contained in:
Yanis
2025-07-20 12:50:58 +02:00
committed by GitHub
parent e6833212f4
commit f005da9ab8
4 changed files with 171 additions and 136 deletions
+36
View File
@@ -0,0 +1,36 @@
name: Build
on:
push:
pull_request:
jobs:
build:
container: ghcr.io/yanis002/st-build:main
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [eur, jp]
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
ninja arm9 report check
- name: Upload report
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.version }}_report
path: build/${{ matrix.version }}/report.json