forked from OpenLiberty/open-liberty
-
Notifications
You must be signed in to change notification settings - Fork 0
225 lines (221 loc) · 6.95 KB
/
openliberty-ci.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
name: OpenLiberty CI
on:
pull_request:
branches:
- integration
- gh-actions
types: [opened, synchronize, reopened, ready_for_review]
paths-ignore:
- '.gitignore'
- '.dockerignore'
- '*.md'
- '*.adoc'
- '*.txt'
- '.github/ISSUE_TEMPLATE/**'
- '.dependabot/**'
- 'cla/**'
- 'images/**'
- 'logos/**'
env:
LANG: en_US.UTF-8
jobs:
build:
name: Build Open Liberty
runs-on: ubuntu-latest
outputs:
test-matrix: ${{ steps.gen-params.outputs.test-matrix }}
test-os: ${{ steps.gen-params.outputs.test-os }}
test-java: ${{ steps.gen-params.outputs.test-java }}
# Do not run on draft PRs
if: "github.event_name != 'pull_request' || ( \
github.event.pull_request.draft == false && \
github.event.pull_request.state != 'closed'
)"
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 50
- name: Validate copyright headers
if: "github.event_name == 'pull_request'"
run: .github/workflow-scripts/validate-copyright-headers.sh
- name: Set up Java
uses: joschi/setup-jdk@v2
with:
java-version: 11
openjdk_impl: openj9
- name: Generate output
id: gen-params
run: |
cat > .github/pull_request_body.txt << END_OF_PR_BODY
${{ github.event.pull_request.body }}
END_OF_PR_BODY
echo "PR Summary is:"
cat .github/pull_request_body.txt
git diff --name-only HEAD^...HEAD^2 >> .github/modified_files.diff
echo "Modified files in this PR are:"
cat .github/modified_files.diff
echo "::set-output name=test-os::ubuntu-latest"
echo "::set-output name=test-java::11"
MATRIX_RESULT=$(java .github/workflow-scripts/GenerateCategories.java .github/pull_request_body.txt)
echo "MATRIX_RESULT is $MATRIX_RESULT"
echo "::set-output name=test-matrix::$MATRIX_RESULT"
- name: Apply Gradle cache
uses: actions/cache@v2
with:
path: |
~/.gradle/caches/modules-2
!~/.gradle/caches/modules-2/io.openliberty*
!~/.gradle/caches/modules-2/com.ibm.w*
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Apply Maven cache
uses: actions/cache@v2
with:
path: |
~/.m2/repository/
!~/.m2/repository/io/openliberty
!~/.m2/repository/com/ibm/w*
key: ${{ runner.os }}-maven-${{ hashFiles('**/*.maven') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Gradle
run: |
cd dev
chmod +x gradlew
./gradlew cnf:initialize assemble
cd .. && zip -rq openliberty-image.zip dev/build.image/wlp/
- name: Upload liberty image
uses: actions/upload-artifact@v2
with:
name: openliberty-image
if-no-files-found: error
path: openliberty-image.zip
unit_tests:
name: Unit Tests
runs-on: ubuntu-latest
timeout-minutes: 60
# Do not run on draft PRs
if: "github.event_name != 'pull_request' || ( \
github.event.pull_request.draft == false && \
github.event.pull_request.state != 'closed'
)"
steps:
- uses: actions/checkout@v2
# - uses: testspace-com/setup-testspace@v1
# with:
# domain: ${{ github.repository_owner }}
- name: Set up Java
uses: joschi/setup-jdk@v2
with:
java-version: 11
openjdk_impl: openj9
- name: Apply Gradle cache
uses: actions/cache@v2
with:
path: |
~/.gradle/caches/modules-2
!~/.gradle/caches/modules-2/io.openliberty*
!~/.gradle/caches/modules-2/com.ibm.w*
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Apply Maven cache
uses: actions/cache@v2
with:
path: |
~/.m2/repository/
!~/.m2/repository/io/openliberty
!~/.m2/repository/com/ibm/w*
key: ${{ runner.os }}-maven-${{ hashFiles('**/*.maven') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run unit tests
run: |
cd dev
chmod +x gradlew
./gradlew --continue cnf:initialize testResults
- name: Upload test report
if: failure()
uses: actions/upload-artifact@v2
with:
name: Unit test logs
path: dev/cnf/generated/testReports/allUnitTests
- name: Upload unit test results
shell: bash
if: always()
run: .github/workflow-scripts/upload-unit-tests.sh
fat_tests:
name: FAT Tests - ${{matrix.category}}
needs: build
runs-on: ${{ needs.build.outputs.test-os }}
# Do not run on draft PRs
if: "github.event_name != 'pull_request' || ( \
github.event.pull_request.draft == false && \
github.event.pull_request.state != 'closed'
)"
strategy:
fail-fast: false
max-parallel: 19
matrix: ${{fromJson(needs.build.outputs.test-matrix)}}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 50
- name: Reclaim disk space
run: .github/workflow-scripts/reclaim-disk-space.sh
# - uses: testspace-com/setup-testspace@v1
# with:
# domain: ${{ github.repository_owner }}
- name: Set up Java
uses: joschi/setup-jdk@v2
with:
java-version: ${{ needs.build.outputs.test-java }}
openjdk_impl: openj9
- name: Apply Gradle cache
uses: actions/cache@v2
with:
path: |
~/.gradle/caches/modules-2
!~/.gradle/caches/modules-2/io.openliberty*
!~/.gradle/caches/modules-2/com.ibm.w*
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Apply Maven cache
uses: actions/cache@v2
with:
path: |
~/.m2/repository/
!~/.m2/repository/io/openliberty
!~/.m2/repository/com/ibm/w*
key: ${{ runner.os }}-maven-${{ hashFiles('**/*.maven') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Download liberty image
uses: actions/download-artifact@v2
with:
name: openliberty-image
- name: Run FAT buckets
timeout-minutes: 150
shell: bash
env:
CATEGORY: ${{matrix.category}}
GH_EVENT_NAME: ${{github.event_name}}
run: .github/workflow-scripts/run-fat-build.sh
- name: Check for FAT failures
shell: bash
if: always()
env:
CATEGORY: ${{matrix.category}}
run: .github/workflow-scripts/check-fat-failures.sh
- name: Upload failing FAT artifacts
if: failure()
uses: aguibert/upload-artifact@v1.0
with:
name: ${{matrix.category}}
path: dev/failing_buckets/*.zip
single-archive: "false"