-
Notifications
You must be signed in to change notification settings - Fork 336
60 lines (53 loc) · 1.64 KB
/
android-app-reproducible.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
---
name: Android - Build and test
on:
workflow_dispatch:
inputs:
override_container_image:
description: Override container image
type: string
required: false
jobs:
prepare:
name: Prepare
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use custom container image if specified
if: ${{ github.event.inputs.override_container_image != '' }}
run: echo "inner_container_image=${{ github.event.inputs.override_container_image }}"
>> $GITHUB_ENV
- name: Use default container image and resolve digest
if: ${{ github.event.inputs.override_container_image == '' }}
run: |
echo "inner_container_image=$(cat ./building/android-container-image.txt)" >> $GITHUB_ENV
outputs:
container_image: ${{ env.inner_container_image }}
build-app:
name: Build app
needs: [prepare]
runs-on: ubuntu-latest
container:
image: ${{ needs.prepare.outputs.container_image }}
strategy:
matrix:
include:
build-id: a
build-id: b
steps:
- name: Fix HOME path
run: echo "HOME=/root" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Build app (${{ matrix.build-id }})
run: ./build-apk.sh --fdroid
- name: Upload apks (${{ matrix.build-id }})
uses: actions/upload-artifact@v3
with:
name: apks-${{ matrix.build-id }}
path: android/app/build/outputs/apk
if-no-files-found: error
retention-days: 7