mirror of
https://github.com/Maschell/SDL2_Playground.git
synced 2025-01-12 04:59:13 +01:00
Build Wii U binaries via github actions
This commit is contained in:
parent
122f6f991c
commit
6875dc981d
16
.github/workflows/building.yml
vendored
16
.github/workflows/building.yml
vendored
@ -31,4 +31,18 @@ jobs:
|
|||||||
- uses: actions/upload-artifact@master
|
- uses: actions/upload-artifact@master
|
||||||
with:
|
with:
|
||||||
name: linux-x86-64-shared
|
name: linux-x86-64-shared
|
||||||
path: "./cmake-build/SDL2_Playground"
|
path: "./cmake-build/SDL2_Playground"
|
||||||
|
build-wiiu-binary:
|
||||||
|
runs-on: ubuntu-18.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
- name: build binary
|
||||||
|
run: |
|
||||||
|
docker build . -f Dockerfile.wiiu -t sdl2_playground-builder-wiiu
|
||||||
|
docker run --rm -v ${PWD}:/project sdl2_playground-builder-wiiu make -f Makefile.wiiu
|
||||||
|
- uses: actions/upload-artifact@master
|
||||||
|
with:
|
||||||
|
name: wiiu
|
||||||
|
path: "*.rpx"
|
@ -1,5 +1,3 @@
|
|||||||
FROM wiiuenv/devkitppc:20200810
|
FROM wiiuenv/devkitppc-with-sdl2:20201002
|
||||||
|
|
||||||
RUN dkp-pacman -Syu && dkp-pacman -S --noconfirm wiiu-sdl2-libs && dkp-pacman -Scc --noconfirm
|
|
||||||
|
|
||||||
WORKDIR project
|
WORKDIR project
|
@ -61,7 +61,7 @@ docker run -it --rm -v ${PWD}:/project sdl2_playground-builder-pc-win make -f .\
|
|||||||
```
|
```
|
||||||
docker build . -f .\Dockerfile.wiiu -t sdl2_playground-builder-wiiu
|
docker build . -f .\Dockerfile.wiiu -t sdl2_playground-builder-wiiu
|
||||||
|
|
||||||
docker run -it --rm -v ${PWD}:/project sdl2_playground-builder-wiiu make -f .\Makefile.wiiu -j16
|
docker run -it --rm -v ${PWD}:/project sdl2_playground-builder-wiiu make -f Makefile.wiiu -j16
|
||||||
```
|
```
|
||||||
|
|
||||||
### With local installation
|
### With local installation
|
||||||
|
Loading…
x
Reference in New Issue
Block a user