Skip to content

Use the new devkitpro cmake #7

Use the new devkitpro cmake

Use the new devkitpro cmake #7

Workflow file for this run

name: CMake
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
container: devkitpro/devkitppc:latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Update Wii U development tools
run: sudo dkp-pacman -Syu wiiu-dev --noconfirm --needed
- name: Configure CMake
run: cmake -B ./build
- name: Build project
run: make -C ./build