mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-04-27 04:21:42 +00:00
fix windows [build]
This commit is contained in:
parent
808c91776d
commit
61d0c734cc
1 changed files with 16 additions and 8 deletions
22
.github/workflows/build-coop.yaml
vendored
22
.github/workflows/build-coop.yaml
vendored
|
|
@ -8,8 +8,6 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- "**"
|
- "**"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
branches:
|
|
||||||
- "**"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-ubuntu:
|
build-ubuntu:
|
||||||
|
|
@ -45,14 +43,24 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
uses: msys2/setup-msys2@v2
|
uses: msys2/setup-msys2@v2
|
||||||
with:
|
with:
|
||||||
msystem: msys
|
msystem: mingw64
|
||||||
update: true
|
update: true
|
||||||
pacboy: unzip:p make:p git:p mingw-w64-x86_64-gcc:p mingw-w64-x86_64-glew:p mingw-w64-x86_64-SDL2:p python3:p
|
install: >
|
||||||
|
unzip
|
||||||
|
make
|
||||||
|
git
|
||||||
|
mingw-w64-i686-gcc
|
||||||
|
mingw-w64-x86_64-gcc
|
||||||
|
mingw-w64-i686-glew
|
||||||
|
mingw-w64-x86_64-glew
|
||||||
|
mingw-w64-i686-SDL2
|
||||||
|
mingw-w64-i686-SDL
|
||||||
|
mingw-w64-x86_64-SDL2
|
||||||
|
mingw-w64-x86_64-SDL
|
||||||
|
python3
|
||||||
|
|
||||||
- name: Build the game
|
- name: Build the game
|
||||||
run: |
|
run: make -j$(nproc)
|
||||||
set MSYSTEM=MINGW64
|
|
||||||
make -j$(nproc)
|
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue