-
Notifications
You must be signed in to change notification settings - Fork 3
61 lines (46 loc) · 1.42 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
name: Build Artifacts for PR
on: pull_request
env:
JAVA_OPTS: -Xms512m -Xmx1024m
GRADLE_OPTS: "-Dorg.gradle.daemon=false -Dorg.gradle.configureondemand=true -Dorg.gradle.jvmargs=-Xmx3g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8"
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- uses: actions/[email protected]
with:
distribution: 'adopt'
java-version: '15'
- name: Build and test with Gradle
uses: gradle/[email protected]
with:
arguments: build --scan --stacktrace
- name: Upload reports
uses: actions/[email protected]
with:
name: 'reports-${{ matrix.os }}'
path: '**/build/reports/**'
- name: Stop Gradle daemons
run: ./gradlew --stop
update_api:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build
uses: gradle/[email protected]
with:
arguments: apiDump
- name: Stop Gradle daemons
run: ./gradlew --stop
- name: "Commit new API files"
uses: stefanzweifel/[email protected]
with:
commit_message: Update API files
file_pattern: /**/api/*.api