-
Notifications
You must be signed in to change notification settings - Fork 71
42 lines (36 loc) · 929 Bytes
/
build-app.yaml
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
name: Build App
on:
pull_request:
push:
branches:
- main
- release
env:
# Our build metadata
BUILD_USER: android-builder
BUILD_HOST: github.syncthing.net
jobs:
build:
name: Debug Build
runs-on: ubuntu-latest
container: ghcr.io/syncthing/syncthing-android-builder
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- name: build
run: |
git config --system --add safe.directory '*'
java -version
./gradlew --no-daemon buildNative lint assembleDebug
- uses: actions/upload-artifact@v3
with:
name: syncthing-android-debug.apk
path: app/build/outputs/apk/debug/app-debug.apk
- uses: actions/upload-artifact@v3
with:
name: reports-and-libs
path: |
app/build/reports/**
app/src/main/jniLibs/**