mirror of https://github.com/PrimeDecomp/prime.git
parent
e8c248b73c
commit
d5d7d4af0e
|
@ -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
|
||||
|
|
6
Makefile
6
Makefile
|
@ -8,8 +8,8 @@ endif
|
|||
# If 0, tells the console to chill out. (Quiets the make process.)
|
||||
VERBOSE ?= 0
|
||||
|
||||
# If MAPGENFLAG set to 1, tells LDFLAGS to generate a mapfile, which makes linking take several minutes.
|
||||
MAPGENFLAG ?= 1
|
||||
# If GENERATE_MAP set to 1, tells LDFLAGS to generate a mapfile, which makes linking take several minutes.
|
||||
GENERATE_MAP ?= 1
|
||||
|
||||
ifeq ($(VERBOSE),0)
|
||||
QUIET := @
|
||||
|
@ -37,7 +37,7 @@ ELF := $(DOL:.dol=.elf)
|
|||
MAP := $(BUILD_DIR)/MetroidPrime.MAP
|
||||
|
||||
|
||||
ifeq ($(MAPGENFLAG),1)
|
||||
ifeq ($(GENERATE_MAP),1)
|
||||
MAPGEN := -map $(MAP)
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue