Remove special CI build dir (#1738)

* Remove special CI build dir

* Add isCI directly to spotbugs.gradle
This commit is contained in:
Trask Stalnaker 2020-11-23 05:41:45 -08:00 committed by GitHub
parent 308a8f9b0f
commit 5f7d1706c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 5 deletions

View File

@ -31,11 +31,6 @@ nebulaRelease {
}
allprojects {
ext.isCI = System.getenv("CI") != null
if (isCI) {
buildDir = "$rootDir/workspace/${projectDir.path.replace(rootDir.path, '')}/build/"
}
apply from: "$rootDir/gradle/dependencies.gradle"
apply from: "$rootDir/gradle/util.gradle"
}

View File

@ -1,3 +1,5 @@
def isCI = System.getenv("CI") != null
allprojects {
apply plugin: 'com.github.spotbugs'