mirror of
https://github.com/tinymce/tinymce.git
synced 2025-08-16 18:21:47 +00:00
TINY-11840: Alert on build fail (#10404)
* TINY-11840: Test alert * TINY-12234: Correct version testing
This commit is contained in:
14
Jenkinsfile
vendored
14
Jenkinsfile
vendored
@ -52,7 +52,8 @@ def runRemoteTests(String name, String browser, String provider, String platform
|
|||||||
" --buckets=" + buckets +
|
" --buckets=" + buckets +
|
||||||
" --name=" + name +
|
" --name=" + name +
|
||||||
"${provider == 'aws' ? awsOpts : ''}" +
|
"${provider == 'aws' ? awsOpts : ''}" +
|
||||||
"${platformName}"
|
"${platformName}" +
|
||||||
|
"${browserVersion}"
|
||||||
runBedrockTest(name, bedrockCommand, runAll, retry, timeout)
|
runBedrockTest(name, bedrockCommand, runAll, retry, timeout)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -182,7 +183,12 @@ def cacheName = "cache_${BUILD_TAG}"
|
|||||||
|
|
||||||
def testPrefix = "tinymce_${cleanBuildName(env.BRANCH_NAME)}-build${env.BUILD_NUMBER}"
|
def testPrefix = "tinymce_${cleanBuildName(env.BRANCH_NAME)}-build${env.BUILD_NUMBER}"
|
||||||
|
|
||||||
timestamps {
|
timestamps { alertWorseResult(
|
||||||
|
cleanupStep: { devPods.cleanUpPod(build: cacheName) },
|
||||||
|
branches: ['main', 'release/7', 'release/8'],
|
||||||
|
channel: '#tinymce-build-status',
|
||||||
|
name: 'TinyMCE'
|
||||||
|
) {
|
||||||
devPods.nodeProducer(
|
devPods.nodeProducer(
|
||||||
nodeOpts: [
|
nodeOpts: [
|
||||||
resourceRequestCpu: '2',
|
resourceRequestCpu: '2',
|
||||||
@ -291,6 +297,4 @@ timestamps {
|
|||||||
echo "Running tests [runAll=${runAllTests}]"
|
echo "Running tests [runAll=${runAllTests}]"
|
||||||
parallel processes
|
parallel processes
|
||||||
}
|
}
|
||||||
|
}}
|
||||||
devPods.cleanUpPod(name: cacheName)
|
|
||||||
}
|
|
||||||
|
Reference in New Issue
Block a user