GRRLIB/.github/workflows/ci.yml
2020-07-04 07:23:23 -04:00

32 lines
911 B
YAML

name: Continuous Integration
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
DEVKITPRO: /opt/devkitpro
DEVKITPPC: ${DEVKITPRO}/devkitPPC
steps:
- name: Checkout the Git repository
uses: actions/checkout@v2
- name: Download and install devkitPro
run: |
wget -nv https://github.com/devkitPro/pacman/releases/latest/download/devkitpro-pacman.amd64.deb
sudo apt-get install gdebi-core
sudo gdebi --non-interactive devkitpro-pacman.amd64.deb
- name: Install required packages
run: sudo dkp-pacman --sync --sysupgrade --refresh --needed --noconfirm wii-dev ppc-libpng ppc-freetype ppc-libjpeg-turbo
- name: Build library and examples
run: |
(cd GRRLIB && sudo -E make clean all install)
(cd examples && make)
(cd GRRLIB && sudo -E make PLATFORM=cube clean all)