Reverse check/checkAsciidocLinks order

This commit is contained in:
Gary Russell
2019-06-05 14:59:19 -04:00
committed by Artem Bilan
parent 8c68255050
commit 703141b433
2 changed files with 2 additions and 2 deletions

View File

@@ -15,4 +15,4 @@ install: true
env:
- TERM=dumb SI_FATAL_WHEN_NO_BEANFACTORY=true NO_REFERENCE_TASK=true
script:
- ./gradlew check checkAsciidocLinks --refresh-dependencies --no-daemon
- ./gradlew checkAsciidocLinks check --refresh-dependencies --no-daemon

View File

@@ -274,7 +274,7 @@ subprojects { subproject ->
}
}
task testAll(type: Test, dependsOn: ['check',":checkAsciidocLinks"])
task testAll(type: Test, dependsOn: [":checkAsciidocLinks",'check'])
gradle.taskGraph.whenReady { graph ->
if (graph.hasTask(testAll)) {