Use the new devkitpro cmake #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |