GRRLIB/.github/workflows/ci.yml

23 lines
436 B
YAML
Raw Normal View History

name: Continuous Integration
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
2020-07-05 03:16:33 +00:00
container:
image: devkitpro/devkitppc:latest
steps:
- name: Checkout the Git repository
uses: actions/checkout@v2
- name: Build library and examples
run: |
2020-07-05 03:16:33 +00:00
(cd GRRLIB && make clean all install)
(cd examples && make)
2020-07-05 03:16:33 +00:00
(cd GRRLIB && make PLATFORM=cube clean all)