Skip to content

Commit

Permalink
add yodaos workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yorkie authored Dec 4, 2019
1 parent e78372f commit f2ee241
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/yodaos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: YodaOS Build System
on:
push:
branches:
- v9.x
pull_request:
branches:
- v9.x

jobs:
build-rpi3-on-ubuntu:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v1
- name: cache openwrt download files
uses: actions/cache@v1
with:
key: ${{ runner.OS }}
path: openwrt/dl
- name: configure
run: ./configure -p rpi -c rpi3b_plus
- name: make image
run: make -j1 V=s

0 comments on commit f2ee241

Please sign in to comment.