-
Notifications
You must be signed in to change notification settings - Fork 890
114 lines (94 loc) · 3.4 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: Pull Request
on:
pull_request:
branches:
- main
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Validate PR
runs-on: ubuntu-latest
if: github.event_name != 'merge_group'
steps:
- name: Checkout the Code
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build debug APK
run: ./gradlew assembleMadaniDebug
- name: Run lint
run: ./gradlew lintMadaniDebug
- name: Upload lint results
uses: actions/upload-artifact@v4
if: failure()
with:
name: lint_report
path: app/build/reports/lint-results-madaniDebug.html
- name: Run SqlDelight migration tests
run: ./gradlew verifySqlDelightMigration
- name: Run tests
run: ./gradlew testMadaniDebug -PdisableCrashlytics -PdisableFirebase
- name: Upload test report
uses: actions/upload-artifact@v4
if: failure()
with:
name: unit_test_report
path: app/build/reports/tests/testMadaniDebugUnitTest/
- name: Download Previous Debug APK
uses: dawidd6/action-download-artifact@v6
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: post_merge.yml
name: latest-apk
- name: Run Apk Diff
run: |
gh release download -p '*.jar' -R jakewharton/diffuse 0.1.0
java -jar diffuse-0.1.0-binary.jar diff app-madani-debug.apk app/build/outputs/apk/madani/debug/app-madani-debug.apk > apk_differences.txt
{ echo "\`\`\`"; head -n 17 apk_differences.txt; echo "\`\`\`"; echo; } >> apk_differences_summary.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Apk Diff Results
uses: actions/upload-artifact@v4
if: success()
with:
name: apk_differences
path: apk_differences_summary.txt
- name: Get dependencies list
run: ./gradlew :app:dependencies --configuration madaniReleaseRuntimeClasspath > current_dependencies.txt
- name: Download Previous Dependencies List
uses: dawidd6/action-download-artifact@v6
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: post_merge.yml
name: dependencies
- name: Download and run dependency-diff-tldr
run: |
gh release download -p '*.jar' -R careem/dependency-diff-tldr v0.0.2
echo "Running Dependency Diff"
java -jar dependency-diff-tldr-r8.jar dependencies.txt current_dependencies.txt > difference.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Dependency Diff Results
uses: actions/upload-artifact@v4
if: success()
with:
name: dependency_differences
path: difference.txt
- name: Write the PR Number
run: |
echo ${{ github.event.number }} > pr.txt
- name: Upload PR Number
uses: actions/upload-artifact@v4
with:
name: pr
path: pr.txt
env:
GRADLE_OPTS: -Dorg.gradle.jvmargs="-Xmx8G -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC -Dfile.encoding=UTF-8"