Implement GitHub Action to compile firmware image
This commit is contained in:
parent
48893c278e
commit
5ee1be0d32
2 changed files with 27 additions and 0 deletions
25
.github/workflows/main.yml
vendored
Normal file
25
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
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/.. thirtythreeforty_businesscard_defconfig
|
||||||
|
make
|
||||||
|
- uses: actions/upload-artifact@v1
|
||||||
|
with:
|
||||||
|
name: flash.bin
|
||||||
|
path: buildroot/output/images/flash.bin
|
|
@ -1,5 +1,7 @@
|
||||||
# Business Card Linux
|
# Business Card Linux
|
||||||
|
|
||||||
|
[![Actions Status](https://github.com/thirtythreeforty/businesscard-linux/workflows/CI/badge.svg)](https://github.com/thirtythreeforty/businesscard-linux/actions)
|
||||||
|
|
||||||
This is the Linux distribution small enough to run from the 8MB of storage on my Linux-powered business card.
|
This is the Linux distribution small enough to run from the 8MB of storage on my Linux-powered business card.
|
||||||
It is powered by the Allwinner F1C100s, a $1.40 Linux-capable ARM system-on-chip.
|
It is powered by the Allwinner F1C100s, a $1.40 Linux-capable ARM system-on-chip.
|
||||||
This repository is the source code for its firmware image, based on Buildroot 2019.05.
|
This repository is the source code for its firmware image, based on Buildroot 2019.05.
|
||||||
|
|
Loading…
Reference in a new issue