-
Notifications
You must be signed in to change notification settings - Fork 50
346 lines (300 loc) · 11.7 KB
/
pr-check.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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
name: Code Lint, Build Checks and UI Tests
run-name: Code Lint, Build Checks and UI Tests PR - ${{ github.event.pull_request.number }}
on:
pull_request:
branches:
- development
- master # Run only for pull requests targeting the develop and master branch
types:
- synchronize # Trigger when commits are added to the pull request
- opened # Trigger when a pull request is first opened
- reopened # Trigger when a previously closed pull request is reopened
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: "Build Project"
runs-on: ubuntu-latest
needs: lint
steps:
# Checkout the latest commit of the branch
- name: Checkout Code to Latest Commit of Branch ${{ github.event.inputs.branch }}
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}
# Cache Gradle dependencies
- name: Cache Gradle
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
gradle-${{ runner.os }}
# Cache Android SDK
- name: Cache Android SDK
uses: actions/cache@v4
with:
path: ~/.android
key: android-sdk-${{ runner.os }}-${{ hashFiles('**/build.gradle') }}
restore-keys: |
android-sdk-${{ runner.os }}
# Set up JDK
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
# Set up Android SDK
- name: Set up Android SDK
uses: android-actions/setup-android@v3
with:
api-level: 33
build-tools: '33.0.2'
# Create local.properties
- name: Create local.properties
run: |
echo "sdk.dir=$ANDROID_HOME" > local.properties
echo "GOOGLE_KEY=${{ secrets.GOOGLE_MAPS_API }}" >> local.properties
# Create release.secrets.properties
- name: Create release.secrets.properties
run: |
echo "apiKommunicateIo=${{ secrets.APIKOMMUNICATEIO }}" >> release.secrets.properties
echo "apiEuKommunicateIo=${{ secrets.APIEUKOMMUNICATEIO }}" >> release.secrets.properties
echo "apiCaKommunicateIo=${{ secrets.APICAKOMMUNICATEIO }}" >> release.secrets.properties
echo "apiTestKommuncateIo=${{ secrets.APITESTKOMMUNCATEIO }}" >> release.secrets.properties
echo "kommunicateIo=${{ secrets.KOMMUNICATEIO }}" >> release.secrets.properties
echo "apiInKommunicateIo=${{ secrets.APIINKOMMUNICATEIO }}" >> release.secrets.properties
echo "kommunicateAWS=${{ secrets.KOMMUNICATEAWS }}" >> release.secrets.properties
echo "SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> release.secrets.properties
# Make gradlew executable
- name: Make gradlew Executable
run: |
chmod +x ./gradlew
# Clean the project
- name: Clean Project
run: |
./gradlew clean
# Build the kommunicate module
- name: Build Kommunicate module
run: |
./gradlew kommunicate:build
# Build the kommunicate ui module
- name: Build Kommunicate UI module
run: |
./gradlew kommunicateui:build
# Clean the project
- name: Clean the project before app build
run: |
./gradlew clean
# Build the kommunicate module
- name: Build App
run: |
./gradlew build
lint:
name: "Run Lint Checks"
runs-on: ubuntu-latest
steps:
# Checkout the latest commit of the branch
- name: Checkout Code to Latest Commit of Branch ${{ github.event.inputs.branch }}
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}
# Cache Gradle dependencies
- name: Cache Gradle
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
gradle-${{ runner.os }}
# Cache Android SDK
- name: Cache Android SDK
uses: actions/cache@v4
with:
path: ~/.android
key: android-sdk-${{ runner.os }}-${{ hashFiles('**/build.gradle') }}
restore-keys: |
android-sdk-${{ runner.os }}
# Set up JDK
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
# Set up Android SDK
- name: Set up Android SDK
uses: android-actions/setup-android@v3
with:
api-level: 33
build-tools: '33.0.2'
# Create local.properties
- name: Create local.properties
run: |
echo "sdk.dir=$ANDROID_HOME" > local.properties
echo "GOOGLE_KEY=${{ secrets.GOOGLE_MAPS_API }}" >> local.properties
# Create release.secrets.properties
- name: Create release.secrets.properties
run: |
echo "apiKommunicateIo=${{ secrets.APIKOMMUNICATEIO }}" >> release.secrets.properties
echo "apiEuKommunicateIo=${{ secrets.APIEUKOMMUNICATEIO }}" >> release.secrets.properties
echo "apiCaKommunicateIo=${{ secrets.APICAKOMMUNICATEIO }}" >> release.secrets.properties
echo "apiTestKommuncateIo=${{ secrets.APITESTKOMMUNCATEIO }}" >> release.secrets.properties
echo "kommunicateIo=${{ secrets.KOMMUNICATEIO }}" >> release.secrets.properties
echo "apiInKommunicateIo=${{ secrets.APIINKOMMUNICATEIO }}" >> release.secrets.properties
echo "kommunicateAWS=${{ secrets.KOMMUNICATEAWS }}" >> release.secrets.properties
echo "SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> release.secrets.properties
# Make gradlew executable
- name: Make gradlew Executable
run: |
chmod +x ./gradlew
# Run lint checks in kommunicate module
- name: Lint checks for Kommunicate module
run: |
./gradlew kommunicate:lint
# Run lint checks in kommunicate ui module
- name: Lint checks for Kommunicate UI module
run: |
./gradlew kommunicateui:lint
# Clean the project
- name: Clean the project before app lint checks
run: |
./gradlew clean
# Run lint checks in app module
- name: Run Lint for App
run: |
./gradlew lint
debug-apk:
name: Generate and Upload Debug APK
runs-on: ubuntu-latest
needs: build
steps:
# Checkout the latest commit of the branch
- name: Checkout Code to Latest Commit of Branch ${{ github.event.inputs.branch }}
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}
# Cache Gradle dependencies
- name: Cache Gradle
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
gradle-${{ runner.os }}
# Cache Android SDK
- name: Cache Android SDK
uses: actions/cache@v4
with:
path: ~/.android
key: android-sdk-${{ runner.os }}-${{ hashFiles('**/build.gradle') }}
restore-keys: |
android-sdk-${{ runner.os }}
# Set up JDK
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
# Set up Android SDK
- name: Set up Android SDK
uses: android-actions/setup-android@v3
with:
api-level: 33
build-tools: '33.0.2'
# Create local.properties
- name: Create local.properties
run: |
echo "sdk.dir=$ANDROID_HOME" > local.properties
echo "GOOGLE_KEY=${{ secrets.GOOGLE_MAPS_API }}" >> local.properties
# Create release.secrets.properties
- name: Create release.secrets.properties
run: |
echo "apiKommunicateIo=${{ secrets.APIKOMMUNICATEIO }}" >> release.secrets.properties
echo "apiEuKommunicateIo=${{ secrets.APIEUKOMMUNICATEIO }}" >> release.secrets.properties
echo "apiCaKommunicateIo=${{ secrets.APICAKOMMUNICATEIO }}" >> release.secrets.properties
echo "apiTestKommuncateIo=${{ secrets.APITESTKOMMUNCATEIO }}" >> release.secrets.properties
echo "kommunicateIo=${{ secrets.KOMMUNICATEIO }}" >> release.secrets.properties
echo "apiInKommunicateIo=${{ secrets.APIINKOMMUNICATEIO }}" >> release.secrets.properties
echo "kommunicateAWS=${{ secrets.KOMMUNICATEAWS }}" >> release.secrets.properties
echo "SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> release.secrets.properties
# Make gradlew executable
- name: Make gradlew Executable
run: |
chmod +x ./gradlew
# Build Debug APK
- name: Build Debug APK
run: |
./gradlew assembleDebug
# Get the latest commmit hash
- name: Set Output
id: vars
run: echo "commit_hash=${GITHUB_SHA::8}" >> $GITHUB_ENV
# Upload APK for testing
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: "Agent-App-${{ env.commit_hash }}"
path: app/build/outputs/apk/debug/app-debug.apk
# Retrieve Artifact URL
- name: Get Artifact URL
id: get-artifact-url
uses: actions/github-script@v6
with:
script: |
const artifactName = `Agent-App-${process.env.commit_hash}`;
const artifacts = await github.rest.actions.listArtifactsForRepo({
owner: context.repo.owner,
repo: context.repo.repo,
});
const artifact = artifacts.data.artifacts.find(a => a.name === artifactName);
if (artifact) {
const downloadUrl = artifact.archive_download_url;
const authenticatedUrl = `${downloadUrl}?access_token=${process.env.GITHUB_TOKEN}`;
core.setOutput('artifact_url', authenticatedUrl);
console.log(`Authenticated Artifact URL: ${authenticatedUrl}`);
} else {
core.setFailed(`Artifact ${artifactName} not found.`);
}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Post a comment on the PR with the artifact URL
- name: Post APK URL
uses: actions/github-script@v6
with:
script: |
const artifactUrl = process.env.ARTIFACT_URL;
const modifiedUrl = artifactUrl.replace(/\/zip$/, "");
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
body: `🚀 The APK is ready for download (As per the last commit of this PR): [Download APK](${modifiedUrl})`
});
env:
ARTIFACT_URL: ${{ steps.get-artifact-url.outputs.artifact_url }}
comment-on-pr:
name: "Post CodeRabbit Review Request"
needs: build
runs-on: ubuntu-latest
steps:
# Checkout the repository (optional, if code is needed)
- name: Checkout code
uses: actions/checkout@v4
# Post a comment on the PR
- name: Post PR comment
uses: actions/github-script@v6
with:
script: |
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
body: "@coderabbit review"
});