You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: jenkins/opensearch/distribution-build.jenkinsfile
+65-5
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,12 @@ pipeline {
47
47
defaultValue: 'integ-test',
48
48
trim: true
49
49
)
50
+
string(
51
+
name: 'SMOKE_TEST_JOB_NAME',
52
+
description: 'Optional: Name of smoke test job that will be triggered, e.g. smoke-test. A non-null empty value here will skip smoke tests.',
53
+
defaultValue: 'smoke-test',
54
+
trim: true
55
+
)
50
56
string(
51
57
name: 'BWC_TEST_JOB_NAME',
52
58
description: 'Optional: Name of backwards compatibility test job that will be triggered, e.g. Playground/bwc-test. A non-null empty value here will skip BWC tests.',
echo "${skipSmokeTests ? 'Skipping SMOKE tests as one of the values has empty or wrong string: SMOKE_TEST_JOB_NAME, TEST_MANIFEST, buildManifestUrl, TEST_PLATFORM, TEST_DISTRIBUTION' : 'Running SMOKE tests'}"
echo "${skipBwcTests ? 'Skipping BWC tests as one of the values has empty or wrong string: BWC_TEST_JOB_NAME, TEST_MANIFEST, buildManifestUrl, TEST_PLATFORM, TEST_DISTRIBUTION' : 'Running BWC tests'}"
0 commit comments