mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-08 15:04:54 +00:00
ci: Use WiBo
This commit is contained in:
29
.github/workflows/build.yml
vendored
29
.github/workflows/build.yml
vendored
@@ -11,17 +11,30 @@ jobs:
|
||||
env:
|
||||
WINEPREFIX: ${{github.workspace}}/.wine
|
||||
steps:
|
||||
- name: Checkout
|
||||
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 wine32
|
||||
sudo chown $(whoami) "$GITHUB_WORKSPACE"
|
||||
- uses: actions/checkout@v3
|
||||
- name: Download compilers
|
||||
run: |
|
||||
sudo apt-get -y install build-essential 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: make
|
||||
run: make -j$(nproc)
|
||||
mv tools/GC/* tools/mwcc_compiler/
|
||||
- name: Build WiBo
|
||||
working-directory: tools/WiBo
|
||||
run: |
|
||||
cmake -B build
|
||||
cmake --build build
|
||||
- name: Build
|
||||
run: make -j$(nproc) WINE=./tools/WiBo/build/wibo
|
||||
- name: Upload map
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: MetroidPrime.MAP
|
||||
path: build/mp1.0/MetroidPrime.MAP
|
||||
|
||||
Reference in New Issue
Block a user