Skip to content

Commit

Permalink
And add a CI workflow for live Kobo builds
Browse files Browse the repository at this point in the history
  • Loading branch information
NiLuJe committed Jul 18, 2024
1 parent 912edc5 commit 91a0459
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build
on: [push, pull_request]

jobs:
build_fbink:
name: fbink
runs-on: ubuntu-latest
steps:
- name: Download toolchain
run: wget -q https://github.com/koreader/koxtoolchain/releases/latest/download/kobo.zip && unzip -p kobo.zip | tar -C ~ -xz
- name: Export toolchain
run: echo ~/x-tools/arm-kobo-linux-gnueabihf/bin >> $GITHUB_PATH
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Build
run: make distclean && make ci
- name: Upload release archive
uses: actions/upload-artifact@v3
with:
name: FBInk
path: FBInk-*.tar.gz

0 comments on commit 91a0459

Please sign in to comment.