-
Notifications
You must be signed in to change notification settings - Fork 649
89 lines (82 loc) · 3.18 KB
/
pull_request.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
name: paymentsheet-example size diff
on:
pull_request:
paths:
- 'payments/**'
- 'payments-core/**'
- 'payments-model/**'
- 'stripe-core/**'
- 'payments-model/**'
- 'payments-ui-core/**'
- 'link/**'
- 'dependencies.gradle'
jobs:
# Checkout master branch and build the APK
build-master:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: master
- uses: ./.github/actions/stripe_setup
- name: Build in master
run: ./gradlew :paymentsheet-example:assembleRelease && mv paymentsheet-example/build/outputs/apk/release/paymentsheet-example-release.apk paymentsheet-example/build/outputs/apk/release/paymentsheet-example-release-master.apk
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: paymentsheet-base-apk
path: paymentsheet-example/build/outputs/apk/release/paymentsheet-example-release-master.apk
# Checkout PR branch and build the APK
build-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/stripe_setup
- name: Build from PR
run: ./gradlew :paymentsheet-example:assembleRelease && mv paymentsheet-example/build/outputs/apk/release/paymentsheet-example-release.apk paymentsheet-example/build/outputs/apk/release/paymentsheet-example-release-pr.apk
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: paymentsheet-pr-apk
path: paymentsheet-example/build/outputs/apk/release/paymentsheet-example-release-pr.apk
# Execute Diffuse only when the two APKs are built successfully
diffuse:
needs: [build-master, build-pr]
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Download APKs
uses: actions/download-artifact@v4
with:
path: apk
pattern: paymentsheet-*-apk
merge-multiple: true
- name: diffuse
id: diffuse
uses: usefulness/diffuse-action@41995fe8ff6be0a8847e63bdc5a4679c704b455c
with:
old-file-path: apk/paymentsheet-example-release-master.apk
new-file-path: apk/paymentsheet-example-release-pr.apk
# Post comment with output
- uses: peter-evans/find-comment@d2dae40ed151c634e4189471272b57e76ec19ba8
id: find_comment
with:
issue-number: ${{ github.event.pull_request.number }}
body-includes: Diffuse output
- uses: peter-evans/create-or-update-comment@a35cf36e5301d70b76f316e867e7788a55a31dae
if: ${{ steps.diffuse.outputs.diff-raw != null || steps.find_comment.outputs.comment-id != null }}
with:
body: |
Diffuse output:
${{ steps.diffuse.outputs.diff-gh-comment }}
edit-mode: replace
comment-id: ${{ steps.find_comment.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload diffuse output
uses: actions/upload-artifact@v4
with:
name: diffuse-output
path: ${{ steps.diffuse.outputs.diff-file }}