Update to Cozette 1.25.2 #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
with: | |
submodules: recursive | |
- name: Build | |
run: make distclean && make ci CROSS_TC=arm-kobo-linux-gnueabihf | |
- name: Upload release archive | |
uses: actions/upload-artifact@v4 | |
with: | |
name: FBInk | |
path: Release/FBInk-*.tar.gz |