From 585cc7e9aae5827701fa9ef7415faed0a6258aae Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Mon, 11 Sep 2023 02:32:28 +0100 Subject: [PATCH] add workflow for wiiu --- .github/workflows/wiiu.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/wiiu.yml diff --git a/.github/workflows/wiiu.yml b/.github/workflows/wiiu.yml new file mode 100644 index 0000000000000..b02eddf823341 --- /dev/null +++ b/.github/workflows/wiiu.yml @@ -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