Skip to content

Commit

Permalink
add action builds
Browse files Browse the repository at this point in the history
with docker img containing dynamic uClibc toolchain
  • Loading branch information
Apaczer committed Jan 15, 2023
1 parent 24d362e commit d270ee4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

name: CI Build

on: [push, pull_request]

jobs:
build-modern:
name: FBA for MiyooCFW (uClibc)
runs-on: ubuntu-20.04
container:
image: nfriedly/miyoo-toolchain:steward
steps:
- uses: actions/checkout@v3
- name: build
run: make -f Makefile
- uses: actions/upload-artifact@v3
with:
name: FBA binary
path: bin/fba
if-no-files-found: error # 'error', 'warn', 'ignore'; defaults to `warn`

0 comments on commit d270ee4

Please sign in to comment.