forked from tinymce/tinymce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
247 lines (216 loc) · 7.81 KB
/
Jenkinsfile
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
#!groovy
@Library('waluigi@release/7') _
standardProperties()
def runBedrockTest(String name, String command, Boolean runAll, int retry = 0, int timeout = 0) {
def bedrockCmd = command + (runAll ? " --ignore-lerna-changed=true" : "")
echo "Running Bedrock cmd: ${command}"
def testStatus = sh(script: command, returnStatus: true)
junit allowEmptyResults: true, testResults: 'scratch/TEST-*.xml'
if (testStatus == 4) {
unstable("Tests failed for ${name}")
} else if (testStatus != 0) {
if (retry > 0) {
echo "Running retry [${retry}] after [${timeout}]"
sleep(timeout)
runBedrockTest(name, command, runAll, retry - 1, timeout)
} else {
error("Unexpected error in ${name} ")
}
}
}
def runHeadlessTests(Boolean runAll) {
def bedrockCmd = "yarn grunt headless-auto"
runBedrockTest('headless', bedrockCmd, runAll)
}
def runRemoteTests(String name, String browser, String provider, String platform, String arn, String version, String bucket, String buckets, Boolean runAll, int retry = 0, int timeout = 0) {
def awsOpts = " --sishDomain=sish.osu.tiny.work --devicefarmArn=${arn}"
def platformName = platform != null ? " --platformName='${platform}'" : ""
def browserVersion = version != null ? " --browserVersion=${version}" : ""
def bedrockCommand =
"yarn browser-test" +
" --chunk=400" +
" --bedrock-browser=" + browser +
" --remote=" + provider +
" --bucket=" + bucket +
" --buckets=" + buckets +
" --name=" + name +
"${provider == 'aws' ? awsOpts : ''}" +
"${platformName}"
runBedrockTest(name, bedrockCommand, runAll, retry, timeout)
}
def runBrowserTests(String name, String browser, String platform, String bucket, String buckets, Boolean runAll) {
def bedrockCommand =
"yarn grunt browser-auto" +
" --chunk=400" +
" --bedrock-os=" + platform +
" --bedrock-browser=" + browser +
" --bucket=" + bucket +
" --buckets=" + buckets;
// Clean scratch dir for existing nodes
dir('scratch') {
if (isUnix()) {
sh "rm -f *.xml"
} else {
bat "del *.xml"
}
}
runBedrockTest(name, bedrockCommand, runAll)
}
def runTestPod(String cacheName, String name, String testname, String browser, String provider, String platform, String version, String bucket, String buckets, Boolean runAll) {
return {
bedrockRemoteTools.nodeConsumerPod(
nodeOpts: [
resourceRequestCpu: '2',
resourceRequestMemory: '4Gi',
resourceRequestEphemeralStorage: '16Gi',
resourceLimitCpu: '7',
resourceLimitMemory: '4Gi',
resourceLimitEphemeralStorage: '16Gi'
],
build: cacheName,
useContainers: ['node', 'aws-cli']
) {
stage("${name}") {
grunt('list-changed-browser')
bedrockRemoteTools.withRemoteCreds(provider) {
int retry = 0
withCredentials([string(credentialsId: 'devicefarm-testgridarn', variable: 'DF_ARN')]) {
runRemoteTests(testname, browser, provider, platform, DF_ARN, version, bucket, buckets, runAll, retry, 180)
}
}
}
}
}
}
def runTestNode(String branch, String name, String browser, String platform, String bucket, String buckets, Boolean runAll) {
return {
stage(name) {
node("bedrock-${platform}") {
echo "Bedrock tests for ${name} on $NODE_NAME"
checkout(scm)
tinyGit.addAuthorConfig()
gitMerge(branch)
// Clean and Install
exec("git clean -fdx modules scratch js dist")
yarnInstall()
exec("yarn ci")
echo "Running browser tests"
//(String name, String browser, String platform, String bucket, String buckets, Boolean runAll)
runBrowserTests(name, browser, platform, bucket, buckets, runAll)
}
}
}
}
def runHeadlessPod(String cacheName, Boolean runAll) {
return {
bedrockRemoteTools.nodeConsumerPod(
nodeOpts: [
resourceRequestCpu: '2',
resourceRequestMemory: '4Gi',
resourceRequestEphemeralStorage: '16Gi',
resourceLimitCpu: '7',
resourceLimitMemory: '4Gi',
resourceLimitEphemeralStorage: '16Gi'
],
build: cacheName
) {
stage("Headless-chrome") {
yarnInstall()
grunt('list-changed-headless')
runHeadlessTests(runAll)
}
}
}
}
def gitMerge(String primaryBranch) {
if (env.BRANCH_NAME != primaryBranch) {
echo "Merging ${primaryBranch} into this branch to run tests"
exec("git merge --no-commit --no-ff origin/${primaryBranch}")
}
}
def cleanBuildName(String name) {
def parts = name.split('/')
return parts[parts.size() - 1]
}
def props
def cacheName = "cache_${BUILD_TAG}"
def testPrefix = "tinymce_${cleanBuildName(env.BRANCH_NAME)}-build${env.BUILD_NUMBER}"
timestamps {
bedrockRemoteTools.nodeProducerPod(
nodeOpts: [
resourceRequestCpu: '2',
resourceRequestMemory: '4Gi',
resourceRequestEphemeralStorage: '16Gi',
resourceLimitCpu: '7.5',
resourceLimitMemory: '4Gi',
resourceLimitEphemeralStorage: '16Gi'
],
build: cacheName
) {
props = readProperties(file: 'build.properties')
String primaryBranch = props.primaryBranch
assert primaryBranch != null && primaryBranch != ""
stage('Merge') {
// cancel build if primary branch doesn't merge cleanly
gitMerge(primaryBranch)
}
stage('Install') {
yarnInstall()
}
stage("Validate changelog") {
// we use a changelog to run changie
exec("yarn changie-merge")
}
stage('Type check') {
withEnv(["NODE_OPTIONS=--max-old-space-size=1936"]) {
exec("yarn ci-all-seq")
}
}
stage('Moxiedoc check') {
exec("yarn tinymce-grunt shell:moxiedoc")
}
}
// Local nodes use os: windows | macos; Remote tests use os full name e.g.: macOS Sonoma
def platforms = [
// Local tests
// [ browser: 'edge', os: 'windows' ],
// [ browser: 'firefox', os: 'macos' ],
// Remote tests
[ browser: 'chrome', provider: 'aws', buckets: 2 ],
// [ browser: 'edge', provider: 'aws', buckets: 2 ], // TINY-10540: Investigate Edge issues in AWS
[ browser: 'firefox', provider: 'aws', buckets: 2 ],
[ browser: 'edge', provider: 'lambdatest', buckets: 1 ],
[ browser: 'chrome', provider: 'lambdatest', os: 'macOS Sonoma', buckets: 1 ],
[ browser: 'firefox', provider: 'lambdatest', os: 'macOS Sonoma', buckets: 1 ],
[ browser: 'safari', provider: 'lambdatest', os: 'macOS Sonoma', buckets: 1 ]
];
def processes = [:]
def runAllTests = env.BRANCH_NAME == props.primaryBranch
for (int i = 0; i < platforms.size(); i++) {
def platform = platforms.get(i)
def buckets = platform.buckets ?: 1
for (int bucket = 1; bucket <= buckets; bucket ++) {
def suffix = buckets == 1 ? "" : "-" + bucket + "-" + buckets
def os = String.valueOf(platform.os).startsWith('mac') ? 'Mac' : 'Win'
def browserVersion = platform.version ? "-${platform.version}" : ""
def s_bucket = "${bucket}"
def s_buckets = "${buckets}"
if (platform.provider) {
// use remote
def name = "${os}-${platform.browser}${browserVersion}-${platform.provider}${suffix}"
def testName = "${env.BUILD_NUMBER}-${os}-${platform.browser}"
processes[name] = runTestPod(cacheName, name, "${testPrefix}_${testName}", platform.browser, platform.provider, platform.os, platform.version, s_bucket, s_buckets, runAllTests)
} else {
// use local
def name = "${os}-${platform.browser}"
processes[name] = runTestNode(props.primaryBranch, name, platform.browser, platform.os, s_bucket, s_buckets, runAllTests)
}
}
}
processes['headless'] = runHeadlessPod(cacheName, runAllTests)
stage('Run tests') {
echo "Running tests [runAll=${runAllTests}]"
parallel processes
}
bedrockRemoteTools.cleanUpPod(cacheName)
}