-
Notifications
You must be signed in to change notification settings - Fork 7
193 lines (166 loc) · 6.38 KB
/
main.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
on:
pull_request:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
test-job:
runs-on: ubuntu-latest
name: Run dependency diff action
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- name: Downgrade dependency version to see the diff
run: sed -i -E 's/androidx.paging:paging-common-ktx:[[:digit:]]+.[[:digit:]]+.[[:digit:]]+/androidx.paging:paging-common-ktx:3.2.0/g' testproject/build.gradle
- uses: gradle/gradle-build-action@v3
with:
build-root-directory: testproject
arguments: dependencies
gradle-home-cache-cleanup: true
- id: dependency-diff
if: github.event_name == 'pull_request'
uses: ./
with:
configuration: runtimeClasspath
build-root-directory: testproject
project: ""
debug: true
- uses: actions/upload-artifact@v4
if: github.event_name == 'pull_request'
with:
name: file-diff-test-1-output
path: ${{ steps.dependency-diff.outputs.file-diff }}
if-no-files-found: error
- uses: actions/upload-artifact@v4
if: github.event_name == 'pull_request'
with:
name: file-diff-test-1-dependencies-base
path: ${{ steps.dependency-diff.outputs.file-dependencies-base }}
if-no-files-found: error
- uses: actions/upload-artifact@v4
if: github.event_name == 'pull_request'
with:
name: file-diff-test-1-dependencies-head
path: ${{ steps.dependency-diff.outputs.file-dependencies-head }}
if-no-files-found: error
- uses: peter-evans/find-comment@v3
id: find_comment
if: github.event_name == 'pull_request'
with:
issue-number: ${{ github.event.pull_request.number }}
body-includes: Test1
- uses: peter-evans/create-or-update-comment@v4
if: ${{ steps.dependency-diff.outputs.text-diff != null || steps.find_comment.outputs.comment-id != null }}
with:
body: |
Test1
```diff
${{ steps.dependency-diff.outputs.text-diff }}
```
output path: `${{ steps.dependency-diff.outputs.file-diff }}`
base dependencies: `${{ steps.dependency-diff.outputs.file-dependencies-base }}`
head dependencies: `${{ steps.dependency-diff.outputs.file-dependencies-head }}`
edit-mode: replace
comment-id: ${{ steps.find_comment.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
token: ${{ secrets.GITHUB_TOKEN }}
test-job-with-configuration-cache:
runs-on: ubuntu-latest
name: Test additional arguments
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- name: Downgrade dependency version to see the diff
run: sed -i -E 's/androidx.paging:paging-common-ktx:[[:digit:]]+.[[:digit:]]+.[[:digit:]]+/androidx.paging:paging-common-ktx:3.2.0/g' testproject/build.gradle
- run: |
mkdir -p ~/.gradle
printf "org.gradle.unsafe.configuration-cache=true" > ~/.gradle/gradle.properties
shell: bash
- uses: gradle/gradle-build-action@v3
with:
build-root-directory: testproject
arguments: dependencies --no-configuration-cache
gradle-home-cache-cleanup: true
- id: dependency-diff
uses: ./
if: github.event_name == 'pull_request'
with:
configuration: runtimeClasspath
lib-version: "1.2.1"
build-root-directory: testproject
additional-gradle-arguments: "--no-configuration-cache --stacktrace"
project: ""
- uses: actions/upload-artifact@v4
if: github.event_name == 'pull_request'
with:
name: file-diff-test-2
path: ${{ steps.dependency-diff.outputs.file-diff }}
if-no-files-found: error
- uses: peter-evans/find-comment@v3
id: find_comment
if: github.event_name == 'pull_request'
with:
issue-number: ${{ github.event.pull_request.number }}
body-includes: Test2
- uses: peter-evans/create-or-update-comment@v4
if: ${{ steps.dependency-diff.outputs.text-diff != null || steps.find_comment.outputs.comment-id != null }}
with:
body: |
Test2
```diff
${{ steps.dependency-diff.outputs.text-diff }}
```
edit-mode: replace
comment-id: ${{ steps.find_comment.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
token: ${{ secrets.GITHUB_TOKEN }}
test-on-different-os:
strategy:
fail-fast: false
matrix:
os: [ windows-latest, ubuntu-latest ]
runs-on: ${{ matrix.os }}
name: Execute on ${{ matrix.os }} runner
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- name: Downgrade dependency version to see the diff
run: sed -i -E 's/androidx.paging:paging-common-ktx:[[:digit:]]+.[[:digit:]]+.[[:digit:]]+/androidx.paging:paging-common-ktx:3.2.0/g' testproject/build.gradle
- uses: gradle/gradle-build-action@v3
with:
build-root-directory: testproject
arguments: dependencies
gradle-home-cache-cleanup: true
- id: dependency-diff
uses: ./
if: github.event_name == 'pull_request'
with:
configuration: runtimeClasspath
build-root-directory: testproject
project: ""
debug: true
additional-gradle-arguments: "--scan"
- uses: actions/upload-artifact@v4
if: github.event_name == 'pull_request' && matrix.os != 'windows-latest' # https://github.com/actions/upload-artifact/issues/337
with:
name: file-diff-test-on-${{ matrix.os }}
path: ${{ steps.dependency-diff.outputs.file-diff }}
if-no-files-found: error