ci: mkdir WINEPREFIX

Former-commit-id: aa2f3dc6b4b5fb6d2e9a3d83fa9b60dd83052512
This commit is contained in:
Luke Street 2022-04-08 17:49:05 -04:00
parent e1b9386ca7
commit 66eddeccc6

View File

@ -16,11 +16,12 @@ jobs:
sudo dpkg --add-architecture i386 sudo dpkg --add-architecture i386
sudo apt-get update sudo apt-get update
sudo apt-get -y install wine32 sudo apt-get -y install wine32
mkdir -p "$WINEPREFIX"
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Download compilers - name: Download compilers
run: | run: |
curl -L https://cdn.discordapp.com/attachments/727918646525165659/917185027656286218/GC_WII_COMPILERS.zip \ curl -L https://cdn.discordapp.com/attachments/727918646525165659/917185027656286218/GC_WII_COMPILERS.zip \
| bsdtar -xvf- -C tools --exclude Wii | bsdtar -xvf- -C tools --exclude Wii
mv tools/GC tools/mwcc_compiler mv tools/{GC,mwcc_compiler}
- name: make - name: make
run: make -j run: make -j