libarchive base extraction + external JNI libraries #146
Workflow file for this run
This file contains hidden or 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 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: [push, pull_request] | |
defaults: | |
run: | |
shell: bash --noprofile --norc -eo pipefail {0} | |
env: | |
BASH_ENV: '/home/ko/.bashrc' | |
jobs: | |
build: | |
strategy: | |
fail-fast: true | |
matrix: | |
variant: [debug, release] | |
name: ${{ matrix.variant }} | |
runs-on: ubuntu-latest | |
container: | |
image: koreader/koandroid:0.9.1-22.04 | |
steps: | |
# Checkout / fetch. {{{ | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
clean: false | |
fetch-depth: 0 | |
fetch-tags: true | |
show-progress: false | |
# }}} | |
# Build. {{{ | |
- name: Build | |
run: | | |
# Ensure the build fail if gradle tries to install/update an SDK package. | |
echo 'android.builder.sdkDownload=false' >>gradle.properties | |
./gradlew app:assembleArmRocks${{ matrix.variant }} | |
# }}} | |
# }}} | |
# vim: foldmethod=marker foldlevel=0 |