-
Notifications
You must be signed in to change notification settings - Fork 25
65 lines (56 loc) · 1.88 KB
/
pr.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
name: build-pr
on:
pull_request:
paths-ignore:
- 'doc/**'
- '*.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
product: [ "IC-231", "IC-232", "IC-233", "IC-241", "IC-242", "IC-243" ]
include:
- product: "IC-231"
java: "17"
distribution: "temurin"
- product: "IC-232"
java: "17"
distribution: "temurin"
- product: "IC-233"
java: "17"
distribution: "temurin"
- product: "IC-241"
java: "17"
distribution: "temurin"
- product: "IC-242"
java: "17"
distribution: "temurin"
- product: "IC-243"
java: "17"
distribution: "temurin"
max-parallel: 10
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
- name: Run tests
run: ./gradlew check
env:
PRODUCT_NAME: ${{ matrix.product }}
- name: Bundle the build report
if: failure()
run: find . -type d -name 'reports' | zip -@ -r build-reports.zip
- name: Upload the build report
if: failure()
uses: actions/upload-artifact@master
with:
name: error-report
path: build-reports.zip
env:
GRADLE_OPTS: -Dorg.gradle.configureondemand=true -Dorg.gradle.parallel=false -Dkotlin.incremental=false -Dorg.gradle.jvmargs="-Xmx3g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8"