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 585cc7e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/wiiu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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 \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=${DEVKITPRO}/portlibs/wiiu
- name: Build
run: cmake --build build

0 comments on commit 585cc7e

Please sign in to comment.