We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ae2e23 commit 8893e58Copy full SHA for 8893e58
buildSrc/src/main/groovy/org/elasticsearch/gradle/test/DistroTestPlugin.java
@@ -498,6 +498,13 @@ private static boolean shouldRunDockerTests(Project project) {
498
return true;
499
500
case LINUX:
501
+ // We don't attempt to check the current flavor and version of Linux unless we're
502
+ // running in CI, because we don't want to stop people running the Docker tests in
503
+ // their own environments if they really want to.
504
+ if (BuildParams.isCi() == false) {
505
+ return true;
506
+ }
507
+
508
// Only some hosts in CI are configured with Docker. We attempt to work out the OS
509
// and version, so that we know whether to expect to find Docker. We don't attempt
510
// to probe for whether Docker is available, because that doesn't tell us whether
0 commit comments