-
Notifications
You must be signed in to change notification settings - Fork 3
274 lines (266 loc) · 12.2 KB
/
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
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
name: Build then UAT
on:
workflow_dispatch:
push:
branches:
- 'main'
- 'external_pr_*'
pull_request:
branches: '*'
env:
AWS_REGION : "us-west-2"
CODE_BUILD_PROJECT_LINUX: "OtfUatCodeBuildLinux"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest]
steps:
- name: Enable core.longpaths
run: git config --global core.longpaths true
if: matrix.os == 'windows-latest'
- uses: actions/checkout@v2
with:
submodules: recursive
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v2
if: matrix.os == 'ubuntu-latest'
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Init Submodule
run: git submodule update --init
- name: Maven Preprocess
run: mvn -U -ntp clean process-resources
- name: Build with Maven
run: mvn -U -ntp clean verify
- name: Upload Failed Test Report for aws-greengrass-testing-features-api
uses: actions/[email protected]
if: failure()
with:
name: Failed Test Report ${{ matrix.os }}
path: aws-greengrass-testing-features/aws-greengrass-testing-features-api/target/surefire-reports
- name: Upload Failed Test Report for aws-greengrass-testing-launcher
uses: actions/[email protected]
if: failure()
with:
name: Failed Test Report ${{ matrix.os }}
path: aws-greengrass-testing-launcher/target/surefire-reports
- name: Upload Failed Test Report for aws-greengrass-testing-platform-api
uses: actions/[email protected]
if: failure()
with:
name: Failed Test Report ${{ matrix.os }}
path: aws-greengrass-testing-platform/aws-greengrass-testing-platform-api/target/surefire-reports
- name: Upload Failed Test Report for aws-greengrass-testing-platform-pillbox
uses: actions/[email protected]
if: failure()
with:
name: Failed Test Report ${{ matrix.os }}
path: aws-greengrass-testing-platform/aws-greengrass-testing-platform-pillbox/target/surefire-reports
- name: Convert Jacoco unit test report to Cobertura for aws-greengrass-testing-features-api
run: python3 .github/scripts/cover2cover.py aws-greengrass-testing-features/aws-greengrass-testing-features-api/target/jacoco-report/jacoco.xml src/main/java > aws-greengrass-testing-features/aws-greengrass-testing-features-api/target/jacoco-report/cobertura.xml
if: matrix.os == 'ubuntu-latest'
- name: Convert Jacoco unit test report to Cobertura for aws-greengrass-testing-launcher
run: python3 .github/scripts/cover2cover.py aws-greengrass-testing-launcher/target/jacoco-report/jacoco.xml src/main/java > aws-greengrass-testing-launcher/target/jacoco-report/cobertura.xml
if: matrix.os == 'ubuntu-latest'
- name: Convert Jacoco unit test report to Cobertura for aws-greengrass-testing-platform-api
run: python3 .github/scripts/cover2cover.py aws-greengrass-testing-platform/aws-greengrass-testing-platform-api/target/jacoco-report/jacoco.xml src/main/java > aws-greengrass-testing-platform/aws-greengrass-testing-platform-api/target/jacoco-report/cobertura.xml
if: matrix.os == 'ubuntu-latest'
- name: Convert Jacoco unit test report to Cobertura for aws-greengrass-testing-platform-pillbox
run: python3 .github/scripts/cover2cover.py aws-greengrass-testing-platform/aws-greengrass-testing-platform-pillbox/target/jacoco-report/jacoco.xml src/main/java > aws-greengrass-testing-platform/aws-greengrass-testing-platform-pillbox/target/jacoco-report/cobertura.xml
if: matrix.os == 'ubuntu-latest'
- name: Upload Coverage for aws-greengrass-testing-features-api
uses: actions/[email protected]
if: matrix.os == 'ubuntu-latest'
with:
name: Coverage Report
path: aws-greengrass-testing-features/aws-greengrass-testing-features-api/target/jacoco-report
- name: Upload Coverage for aws-greengrass-testing-launcher
uses: actions/[email protected]
if: matrix.os == 'ubuntu-latest'
with:
name: Coverage Report
path: aws-greengrass-testing-launcher/target/jacoco-report
- name: Upload Coverage for aws-greengrass-testing-platform-api
uses: actions/[email protected]
if: matrix.os == 'ubuntu-latest'
with:
name: Coverage Report
path: aws-greengrass-testing-platform/aws-greengrass-testing-platform-api/target/jacoco-report
- name: Upload Coverage for aws-greengrass-testing-platform-pillbox
uses: actions/[email protected]
if: matrix.os == 'ubuntu-latest'
with:
name: Coverage Report
path: aws-greengrass-testing-platform/aws-greengrass-testing-platform-pillbox/target/jacoco-report
- name: cobertura-report-unit-test for aws-greengrass-testing-features
uses: shaguptashaikh/cobertura-action@master
continue-on-error: true
with:
# The GITHUB_TOKEN for this repo
repo_token: ${{ github.token }}
# Path to the cobertura file.
path: aws-greengrass-testing-features/aws-greengrass-testing-features-api/target/jacoco-report/cobertura.xml
# If files with 100% should be skipped from report.
skip_covered: false
# Minimum allowed coverage percentage as an integer.
minimum_coverage: 60
# Show line rate as specific column.
show_line: true
# Show branch rate as specific column.
show_branch: true
# Use class names instead of the filename
show_class_names: true
# Use a unique name for the report and comment
report_name: Unit Tests Coverage Report for aws-greengrass-testing-features
- name: cobertura-report-unit-test for aws-greengrass-testing-launcher
uses: shaguptashaikh/cobertura-action@master
continue-on-error: true
with:
# The GITHUB_TOKEN for this repo
repo_token: ${{ github.token }}
# Path to the cobertura file.
path: aws-greengrass-testing-launcher/target/jacoco-report/cobertura.xml
# If files with 100% should be skipped from report.
skip_covered: false
# Minimum allowed coverage percentage as an integer.
minimum_coverage: 60
# Show line rate as specific column.
show_line: true
# Show branch rate as specific column.
show_branch: true
# Use class names instead of the filename
show_class_names: true
# Use a unique name for the report and comment
report_name: Unit Tests Coverage Report for aws-greengrass-testing-launcher
- name: cobertura-report-unit-test for aws-greengrass-testing-platform-api
uses: shaguptashaikh/cobertura-action@master
continue-on-error: true
with:
# The GITHUB_TOKEN for this repo
repo_token: ${{ github.token }}
# Path to the cobertura file.
path: aws-greengrass-testing-platform/aws-greengrass-testing-platform-api/target/jacoco-report/cobertura.xml
# If files with 100% should be skipped from report.
skip_covered: false
# Minimum allowed coverage percentage as an integer.
minimum_coverage: 60
# Show line rate as specific column.
show_line: true
# Show branch rate as specific column.
show_branch: true
# Use class names instead of the filename
show_class_names: true
# Use a unique name for the report and comment
report_name: Unit Tests Coverage Report for aws-greengrass-testing-platform-api
- name: cobertura-report-unit-test for aws-greengrass-testing-platform-pillbox
uses: shaguptashaikh/cobertura-action@master
continue-on-error: true
with:
# The GITHUB_TOKEN for this repo
repo_token: ${{ github.token }}
# Path to the cobertura file.
path: aws-greengrass-testing-platform/aws-greengrass-testing-platform-pillbox/target/jacoco-report/cobertura.xml
# If files with 100% should be skipped from report.
skip_covered: false
# Minimum allowed coverage percentage as an integer.
minimum_coverage: 60
# Show line rate as specific column.
show_line: true
# Show branch rate as specific column.
show_branch: true
# Use class names instead of the filename
show_class_names: true
# Use a unique name for the report and comment
report_name: Unit Tests Coverage Report for aws-greengrass-testing-platform-pillbox
check-binary-compatability:
runs-on: ubuntu-latest
steps:
- name: Checkout HEAD
uses: actions/checkout@v2
with:
submodules: recursive
fetch-depth: 0
ref: ${{ github.event.pull_request.base.sha }}
path: 'otf-old-japicmp'
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build HEAD
run: |
cd otf-old-japicmp
# Init Submodule
git submodule update --init
# Maven process resources
mvn -U -ntp clean process-resources
# Set dummy version
mvn --batch-mode --no-transfer-progress org.codehaus.mojo:versions-maven-plugin:2.11.0:set -DnewVersion=JAPICMP-OLD
# Install artifacts with dummy version in local repository; used later by Maven plugin for comparison
mvn --batch-mode --no-transfer-progress install -DskipTests
- name: Checkout new commit
uses: actions/checkout@v2
- name: Build new commit
run: |
# Init Submodule
git submodule update --init
# Maven process resources
mvn -U -ntp clean process-resources
- name: Check binary compatibility
id: check-compatibility
run: >-
mvn --batch-mode --fail-at-end clean package japicmp:cmp -DskipTests &&
pip3 -q install agithub &&
python3 .github/scripts/binaryCompatibility.py --input aws-greengrass-testing-standalone/target/japicmp/default-cli.xml --token "${{ github.token }}"
if: github.event_name == 'pull_request'
- name: Upload Compatibility Report
uses: actions/[email protected]
with:
name: Binary Compatibility Report
path: aws-greengrass-testing-standalone/target/japicmp/default-cli.html
if: github.event_name == 'pull_request'
scan-for-secrets:
name: Scan for secrets
runs-on: ubuntu-latest
steps:
- name: Install Git Secrets
run: |
cd ~
git clone https://github.com/awslabs/git-secrets.git && cd git-secrets
sudo make install
echo "Git-secrets installation completed"
git secrets --register-aws --global
echo "Added aws secret templates"
- name: Checkout
uses: actions/checkout@v2
- name: Run Git Secrets
run: |
git secrets --scan
echo "Repository scan completed"
- name: Print remediation message
if: failure()
run: echo "git secrets found potential leaked credentials. If ANY credentials were committed, they MUST be immediately revoked."
uat-linux:
if: ${{ github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push'}}
permissions:
id-token: write
contents: read
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
steps:
- name: configure aws credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: arn:aws:iam::686385081908:role/aws-greengrass-testing-codebuild-uat-role-amazonlinux
role-session-name: otfCI
aws-region: ${{ env.AWS_REGION }}
- name: Run UAT on linux
uses: aws-actions/aws-codebuild-run-build@v1
with:
project-name: ${{ env.CODE_BUILD_PROJECT_LINUX }}
buildspec-override: codebuild/uat_linux_buildspec.yaml