Browse Source

Disable :qa:apm project (#90291)

This project has a problem with availability of Docker images after
release. Disabling individual tasks is tricky because it uses test
fixtures, so instead just skip the project entirely until we can work
out a way forward.
Rory Hunter 3 years ago
parent
commit
d5bcd0b33e
1 changed files with 9 additions and 0 deletions
  1. 9 0
      settings.gradle

+ 9 - 0
settings.gradle

@@ -101,6 +101,15 @@ void addSubProjects(String path, File dir) {
   if (findProject(dir) != null) return;
 
   final String projectName = "${path}:${dir.name}"
+
+  // This project has a problem with availability of Docker images after
+  // release. Disabling individual tasks is tricky because it uses test
+  // fixtures, so instead just skip the project entirely until we can
+  // work out a way forward.
+  if (projectName.equals(":qa:apm")) {
+    return
+  }
+
   include projectName
   if (path.isEmpty() || path.startsWith(':example-plugins')) {
     project(projectName).projectDir = dir