Skip to content

Commit

Permalink
add workflow for wiiu
Browse files Browse the repository at this point in the history
  • Loading branch information
WinterMute committed Sep 11, 2023
1 parent 4a1bfba commit 25526eb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/wiiu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build (Nintendo WiiU)

on: [push, pull_request]

jobs:
wiiu:
runs-on: ubuntu-latest
container:
image: devkitpro/devkitppc:latest
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: |
${DEVKITPRO}/portlibs/wiiu/bin/powerpc-eabi-cmake -S . -B build -G Ninja \
-DSDL_WERROR=ON \
-DSDL_TESTS=ON \
-DSDL_INSTALL_TESTS=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=${DEVKITPRO}/portlibs/wiiu
- name: Build
run: ${DEVKITPRO}/portlibs/wiiu/bin/powerpc-eabi-cmake --build build

0 comments on commit 25526eb

Please sign in to comment.