aboutsummaryrefslogtreecommitdiffstats
path: root/buildSrc/src/main
diff options
context:
space:
mode:
authorSteve Marion <steve.marion@sonarsource.com>2024-06-21 17:00:33 +0200
committersonartech <sonartech@sonarsource.com>2024-06-26 20:03:32 +0000
commit8e24b10dc39071401722ff654055f14cf0585c3e (patch)
tree8ad714db23669062101367033bf0517714b82e0c /buildSrc/src/main
parent78f39bc77f410ecefb4e1a6ecd431262a339b273 (diff)
downloadsonarqube-8e24b10dc39071401722ff654055f14cf0585c3e.tar.gz
sonarqube-8e24b10dc39071401722ff654055f14cf0585c3e.zip
SONAR-21207 make nightly build depend on external trigger instead of internal state detection
Diffstat (limited to 'buildSrc/src/main')
-rw-r--r--buildSrc/src/main/groovy/org.sonar.build/BlackBoxTest.groovy5
1 files changed, 0 insertions, 5 deletions
diff --git a/buildSrc/src/main/groovy/org.sonar.build/BlackBoxTest.groovy b/buildSrc/src/main/groovy/org.sonar.build/BlackBoxTest.groovy
index 46bc9ff0d03..bb5fa3b4485 100644
--- a/buildSrc/src/main/groovy/org.sonar.build/BlackBoxTest.groovy
+++ b/buildSrc/src/main/groovy/org.sonar.build/BlackBoxTest.groovy
@@ -4,11 +4,6 @@ import org.gradle.api.tasks.testing.Test
class BlackBoxTest extends Test {
BlackBoxTest() {
- def branch = System.getenv('GITHUB_BRANCH')
- if (branch != null && Set.of("branch-nightly-build", "master").contains(branch)) {
- jvmArgs("-javaagent:" + System.getenv('ASPECTJ_WEAVER_PATH'))
- }
-
systemProperty 'java.awt.headless', 'true'
systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
systemProperty 'webdriver.chrome.driver', System.getProperty('webdriver.chrome.driver')