Skip to content

Commit

Permalink
Enable platform tooling support tests on Jenkins and AppVeyor
Browse files Browse the repository at this point in the history
  • Loading branch information
sormuras committed May 27, 2018
1 parent a54640d commit 5df59b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ install:

test_script:
- gradlew --no-daemon -version
- gradlew --no-daemon --stacktrace build
- gradlew --no-daemon --stacktrace build publishToMavenLocal
- gradlew --no-daemon --stacktrace -Dplatform.tooling.support.tests.enabled=true build
5 changes: 4 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ pipeline {
stages {
stage('Build') {
steps {
sh './gradlew --no-daemon -PenableJaCoCo clean build jacocoRootReport'
sh './gradlew --no-daemon clean'
sh './gradlew --no-daemon -PenableJaCoCo build publishToMavenLocal'
sh './gradlew --no-daemon -Dplatform.tooling.support.tests.enabled=true build'
sh './gradlew --no-daemon jacocoRootReport'
}
post {
always {
Expand Down

0 comments on commit 5df59b1

Please sign in to comment.