-
Notifications
You must be signed in to change notification settings - Fork 64
147 lines (140 loc) · 4.96 KB
/
gradle.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
144
145
146
147
name: g11n-java-client-actions
on: [pull_request, push]
jobs:
pre-process:
name: Pre-process
uses: vmware/singleton/.github/workflows/pre-process.yml@devops
check-header:
name: Check Header
needs: pre-process
if: needs.pre-process.outputs.were-only-docs-updated != 'yes'
uses: vmware/singleton/.github/workflows/check.yml@devops
unit-test:
name: Unit Test
runs-on: windows-latest
needs: pre-process
if: needs.pre-process.outputs.were-only-docs-updated != 'yes'
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'adopt-openj9'
java-version: '11'
cache: 'gradle'
- name: Unit test
run: |
./gradlew test jacocoTestReport
- name: Upload Codecov report
uses: codecov/codecov-action@v3
with:
files: ./build/reports/jacoco.xml
security-analysis:
name: Security Analysis
runs-on: ubuntu-latest
needs: pre-process
if: needs.pre-process.outputs.were-only-docs-updated != 'yes'
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '11'
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: java
- name: Autobuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
codacy-analysis-cli:
name: Codacy Analysis CLI
runs-on: ubuntu-latest
needs: pre-process
if: needs.pre-process.outputs.were-only-docs-updated != 'yes'
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@main
- name: Run Codacy Analysis CLI
uses: codacy/codacy-analysis-cli-action@master
with:
output: results.sarif
format: sarif
# Adjust severity of non-security issues
gh-code-scanning-compat: true
# This will handover control about PR rejection to the GitHub side
max-allowed-issues: 2147483647
# Upload the SARIF file generated in the previous step
- name: Upload SARIF results file
uses: github/codeql-action/upload-sarif@main
with:
sarif_file: results.sarif
preflight-smoke-test-check:
name: Preflight Smoke Test
runs-on: ubuntu-latest
needs: pre-process
if: needs.pre-process.outputs.were-only-docs-updated != 'yes'
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '17'
- name: Smoke Test
run: |
git clone --branch=master https://github.com/vmware/singleton.git server
cd $GITHUB_WORKSPACE/server/g11n-ws && ./gradlew build -x test
find $GITHUB_WORKSPACE/server/publish/ -name 'singleton-[0~9]*.jar' -exec mv '{}' $GITHUB_WORKSPACE/server/publish/singleton.jar \;
- uses: actions/upload-artifact@v2
with:
name: singleton-service
path: ./server/publish/singleton.jar
smoke-test:
name: Smoke Test
runs-on: ubuntu-latest
needs: [pre-process, preflight-smoke-test-check]
if: needs.pre-process.outputs.were-only-docs-updated != 'yes'
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'adopt-openj9'
java-version: '8'
- uses: actions/download-artifact@v2
with:
name: singleton-service
- name: Smoke Test
run: |
mkdir -p $GITHUB_WORKSPACE/server/publish/
mv singleton.jar $GITHUB_WORKSPACE/server/publish/
git clone --branch=devops https://github.com/vmware/singleton.git devops
cp $GITHUB_WORKSPACE/devops/deploy/i18n-service/Dockerfile $GITHUB_WORKSPACE/server/publish/
cd $GITHUB_WORKSPACE/server/publish
mv singleton.jar i18n-service.jar
docker build -t singleton .
docker run -d -p 8090:8090 --name singleton singleton
docker ps
cd $GITHUB_WORKSPACE
./gradlew clean build -x test
cp ./build/libs/*.jar $GITHUB_WORKSPACE/devops/autotest/client/java/lib/
cd $GITHUB_WORKSPACE/devops/autotest/client/java
./gradlew build -x test
docker cp src/main/resources/l10n singleton:/
cd target
java -cp '.:./*' org.testng.TestNG -d test-output testng.xml