mirror of
https://github.com/Maschell/SDL2_Playground.git
synced 2024-12-25 04:41:49 +01:00
Build Wii U binaries via github actions
This commit is contained in:
parent
122f6f991c
commit
6875dc981d
14
.github/workflows/building.yml
vendored
14
.github/workflows/building.yml
vendored
@ -32,3 +32,17 @@ jobs:
|
||||
with:
|
||||
name: linux-x86-64-shared
|
||||
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
|
||||
|
||||
RUN dkp-pacman -Syu && dkp-pacman -S --noconfirm wiiu-sdl2-libs && dkp-pacman -Scc --noconfirm
|
||||
FROM wiiuenv/devkitppc-with-sdl2:20201002
|
||||
|
||||
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 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
|
||||
|
Loading…
Reference in New Issue
Block a user