-
Notifications
You must be signed in to change notification settings - Fork 316
143 lines (124 loc) · 3.23 KB
/
unitTests.yaml
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
name: Unit Tests
on:
push:
branches:
- main
- 3.x
pull_request:
workflow_dispatch:
schedule:
- cron: '05 7 * * *' # 07:00 UTC every day
jobs:
unitTests:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
java: [8, 11, 17]
steps:
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d' --utc)"
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- uses: actions/cache@v2
id: mvn-cache
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-unified-${{ steps.date.outputs.date }}
- name: Mvn install # Need this when the directory/pom structure changes
id: install1
continue-on-error: true
run: |
./mvnw \
--batch-mode \
--show-version \
--threads 1.5C \
--define maven.test.skip=true \
--define maven.javadoc.skip=true \
install
- name: Retry install on failure
id: install2
if: steps.install1.outcome == 'failure'
run: |
./mvnw \
--batch-mode \
--show-version \
--threads 1.5C \
--define maven.test.skip=true \
--define maven.javadoc.skip=true \
install
- name: Unit Tests
run: |
./mvnw \
--batch-mode \
--fail-at-end \
--threads 1.5C \
test
- name: Aggregate Report
run: |
./mvnw \
--batch-mode \
--define aggregate=true \
surefire-report:report-only
- name: Archive logs
if: always()
continue-on-error: true
uses: actions/upload-artifact@v4
with:
name: Unit Test Logs - Java ${{ matrix.java }}
path: |
**/target/surefire-reports/*
**/target/site
releaseCheck:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
steps:
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d' --utc)"
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 11
- uses: actions/cache@v2
id: mvn-cache
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-unified-${{ steps.date.outputs.date }}
- name: releaseCheck
run: |
./mvnw \
--batch-mode \
-Drelease=true \
-DskipTests \
-Dgpg.skip \
-Dcheckstyle.skip \
clean \
package
- name: docsCheck
run: |
./mvnw \
--batch-mode \
--activate-profiles docs \
-DskipTests \
-Dgpg.skip \
-Dcheckstyle.skip \
--projects docs \
clean \
package
- name: Archive Artifacts
if: always()
continue-on-error: true
uses: actions/upload-artifact@v4
with:
name: Release Artifacts
path: |
**/.flattened-pom.xml
**/target/**.jar
target/site/apidocs
**/target/generated-docs
!spring-cloud-gcp-samples