2019-08-27 18:12:25 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Cache downloads
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: dl/
|
|
|
|
key: dl
|
|
|
|
- name: Update submodules
|
|
|
|
run: git submodule update --init
|
|
|
|
- name: Compile
|
|
|
|
run: |
|
|
|
|
cd buildroot
|
2024-08-06 10:50:01 +00:00
|
|
|
make BR2_EXTERNAL=$PWD/.. techinc_badge_defconfig
|
2019-08-27 18:12:25 +00:00
|
|
|
make
|
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: flash.bin
|
|
|
|
path: buildroot/output/images/flash.bin
|