aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/build.gradle
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2018-08-29 10:25:32 +0200
committersonartech <sonartech@sonarsource.com>2018-09-19 10:51:43 +0200
commit3f671cfcace8552a32b78a9e3327394d85f863ba (patch)
tree0b6e92572551dc464d0e90ee5e3ae217dbf6305b /server/sonar-web/build.gradle
parent6ab822a9d79091837ee96ff27317597bbb6c6e5e (diff)
downloadsonarqube-3f671cfcace8552a32b78a9e3327394d85f863ba.tar.gz
sonarqube-3f671cfcace8552a32b78a9e3327394d85f863ba.zip
SONAR-11268 replace Jenkins by Cirrus CI
Diffstat (limited to 'server/sonar-web/build.gradle')
-rw-r--r--server/sonar-web/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/build.gradle b/server/sonar-web/build.gradle
index b8dd4e05fff..3f7135ed83c 100644
--- a/server/sonar-web/build.gradle
+++ b/server/sonar-web/build.gradle
@@ -52,14 +52,14 @@ yarn_run {
['config', 'public', 'scripts', 'src', '../sonar-docs/src'].each {
inputs.dir(it).withPathSensitivity(PathSensitivity.RELATIVE)
}
- ['.babelrc', 'build.gradle', 'package.json', 'tsconfig.json', 'yarn.lock'].each {
+ ['.babelrc', 'package.json', 'tsconfig.json', 'yarn.lock'].each {
inputs.file(it).withPathSensitivity(PathSensitivity.RELATIVE)
}
outputs.dir(webappDir)
outputs.cacheIf { true }
-
args = ['build']
}
+build.dependsOn(yarn_run)
def sources = fileTree(dir: "src") + fileTree(dir: "scripts") + fileTree(dir: "config")