-
Notifications
You must be signed in to change notification settings - Fork 85
63 lines (44 loc) · 1.13 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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: '/root/.bashrc'
jobs:
build:
strategy:
fail-fast: true
matrix:
variant: [debug, release]
name: ${{ matrix.variant }}
runs-on: ubuntu-latest
container:
image: koreader/koandroid:0.8.3-20.04
options: --user root
steps:
# Checkout / fetch. {{{
- name: Checkout
uses: actions/checkout@v4
with:
clean: false
fetch-depth: 0
fetch-tags: true
show-progress: false
- name: Fix checkout ownership
run: chown 'root:root' .
- name: Update submodules
run: make update
# }}}
# Build. {{{
- name: Build
run: |
# Ensure the build fail if gradle tries to install/update an SDK package.
echo 'android.builder.sdkDownload=false' >>gradle.properties
make ${{ matrix.variant }}
# }}}
# }}}
# vim: foldmethod=marker foldlevel=0