badge-buildroot/.github/workflows/main.yml
Matthew Baggett 8427b6f3de
Some checks failed
CI / build (push) Failing after 7m44s
Lets goooo
2024-08-06 12:50:01 +02:00

25 lines
527 B
YAML

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
make BR2_EXTERNAL=$PWD/.. techinc_badge_defconfig
make
- uses: actions/upload-artifact@v1
with:
name: flash.bin
path: buildroot/output/images/flash.bin