GRRLIB/.github/workflows/ci.yml

31 lines
642 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
2022-05-27 05:13:44 +00:00
uses: actions/checkout@v3
- name: Build library and examples
run: |
2020-07-05 03:16:33 +00:00
(cd GRRLIB && make clean all install)
2021-07-05 04:33:45 +00:00
(cd GRRLIB/GRRLIB && make PLATFORM=cube clean all install)
2022-05-25 04:10:17 +00:00
(cd examples && make)
2021-03-05 06:25:17 +00:00
- uses: actions/upload-artifact@master
with:
name: examples
path: |
examples/**/*.elf
2022-05-28 05:27:55 +00:00
examples/gamecube/**/*.dol
2021-03-05 06:25:17 +00:00
!examples/template/*