mirror of
https://github.com/pret/berry-fix.git
synced 2026-09-26 13:32:57 -04:00
35 lines
676 B
YAML
35 lines
676 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
COMPARE: 1
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
|
|
- name: Checkout agbcc
|
|
uses: actions/checkout@master
|
|
with:
|
|
path: agbcc
|
|
repository: pret/agbcc
|
|
|
|
- name: Install binutils
|
|
run: sudo apt install binutils-arm-none-eabi
|
|
# build-essential, git, and libpng-dev are already installed
|
|
|
|
- name: Install agbcc
|
|
run: |
|
|
./build.sh
|
|
./install.sh ../
|
|
working-directory: agbcc
|
|
|
|
- name: Compare
|
|
run: make -j${nproc} all
|