We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b79acb8 commit b1f034cCopy full SHA for b1f034c
.jenkins/run-tests
@@ -12,6 +12,12 @@ if [[ $TEST_SUITE != "core" && $TEST_SUITE != "xpack" ]]; then
12
exit 1
13
fi
14
15
+# Do not run XPack tests on "master" branch, and do not run Core tests on "xpack" branch
16
+if [[ ($branch_specifier == "refs/heads/master" && $TEST_SUITE == "xpack") || ($branch_specifier == "refs/heads/xpack" && $TEST_SUITE == "core") ]]; then
17
+ echo -e "\033[33;1mSkipping [$TEST_SUITE] tests on the [$branch_specifier] branch.\033[0m"
18
+ exit 0
19
+fi
20
+
21
if [[ $TEST_SUITE == "core" ]]; then
22
elasticsearch_image=elasticsearch-oss:8.0.0-SNAPSHOT
23
elasticsearch_url=http://es1:9200
0 commit comments