mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-12 19:02:20 +00:00
22 lines
436 B
YAML
22 lines
436 B
YAML
name: Continuous Integration
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: devkitpro/devkitppc:latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout the Git repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build library and examples
|
|
run: |
|
|
(cd GRRLIB && make clean all install)
|
|
(cd examples && make)
|
|
(cd GRRLIB && make PLATFORM=cube clean all)
|