mirror of https://github.com/PrimeDecomp/prime.git
ci: Use build container
This commit is contained in:
parent
3ec17fbf33
commit
5f62dc5b96
|
@ -7,9 +7,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: devkitpro/devkitppc:latest
|
container: ghcr.io/primedecomp/build:main
|
||||||
env:
|
|
||||||
WINEPREFIX: ${{github.workspace}}/.wine
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -17,27 +15,9 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Checkout WiBo
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
repository: decompals/WiBo
|
|
||||||
path: tools/WiBo
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
sudo dpkg --add-architecture i386
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get -y install build-essential ninja-build python3 python3-requests gcc-multilib g++-multilib libc6:i386
|
|
||||||
curl -L https://cdn.discordapp.com/attachments/727918646525165659/917185027656286218/GC_WII_COMPILERS.zip \
|
|
||||||
| bsdtar -xvf- -C tools --exclude Wii
|
|
||||||
mv tools/GC/* tools/mwcc_compiler/
|
|
||||||
- name: Build WiBo
|
|
||||||
working-directory: tools/WiBo
|
|
||||||
run: |
|
|
||||||
cmake -B build
|
|
||||||
cmake --build build
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
python3 configure.py --map --version ${{matrix.version}} --wine ./tools/WiBo/build/wibo
|
python configure.py --map --version ${{matrix.version}} --compilers /compilers/GC
|
||||||
ninja
|
ninja
|
||||||
- name: Upload progress
|
- name: Upload progress
|
||||||
if: github.ref == 'refs/heads/main'
|
if: github.ref == 'refs/heads/main'
|
||||||
|
@ -45,10 +25,10 @@ jobs:
|
||||||
env:
|
env:
|
||||||
PROGRESS_API_KEY: ${{secrets.PROGRESS_API_KEY}}
|
PROGRESS_API_KEY: ${{secrets.PROGRESS_API_KEY}}
|
||||||
run: |
|
run: |
|
||||||
python3 tools/upload-progress.py -b https://progress.deco.mp/ -p prime -v ${{matrix.version}} \
|
python tools/upload-progress.py -b https://progress.deco.mp/ -p prime -v ${{matrix.version}} \
|
||||||
build/mp1.${{matrix.version}}/main.dol.progress
|
build/mp1.${{matrix.version}}/main.dol.progress
|
||||||
- name: Upload map
|
- name: Upload map
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: MetroidPrime-${{matrix.version}}.MAP
|
name: MetroidPrime-${{matrix.version}}.MAP
|
||||||
path: build/*/MetroidPrime.MAP
|
path: build/*/MetroidPrime.MAP
|
||||||
|
|
Loading…
Reference in New Issue