forked from google/jetpack-camera-app
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (49 loc) · 1.38 KB
/
MergeToMainWorkflow.yaml
File metadata and controls
60 lines (49 loc) · 1.38 KB
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: Merge To Main
on:
push:
branches:
- main
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
env:
JDK_VERSION: 17
DISTRIBUTION: 'zulu'
jobs:
choose_runner:
name: Choose Runner
uses: ./.github/workflows/ChooseRunner.yaml
build:
name: Build
needs: choose_runner
runs-on: ${{ needs.choose_runner.outputs.chosen_runner }}
timeout-minutes: 120
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v3
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: ${{ env.DISTRIBUTION }}
java-version: ${{ env.JDK_VERSION }}
cache: gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
- name: Build all build type and flavor permutations
run: ./gradlew assemble --parallel --build-cache
- name: Upload build outputs (APKs)
uses: actions/upload-artifact@v4
with:
name: build-outputs
path: app/build/outputs
- name: Upload build reports
if: always()
continue-on-error: true
uses: actions/upload-artifact@v4
with:
name: build-reports
path: "*/build/reports"