File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -203,13 +203,16 @@ jobs:
203
203
vmImage : ' xcode9-macos10.13'
204
204
205
205
steps :
206
+ - script : |
207
+ mkdir build
208
+ wget "https://cdn.azul.com/zulu/bin/zulu8.38.0.13-ca-fx-jdk8.0.212-macosx_x64.tar.gz" -O "build/jdk.tar.gz"
209
+ sudo tar xzvf build/jdk.tar.gz -C /Library/Java/JavaVirtualMachines/
210
+ displayName: 'Install ZuluFX'
206
211
- task : Gradle@2
207
212
inputs :
208
213
workingDirectory : ' '
209
214
gradleWrapperFile : ' gradlew'
210
- gradleOptions : ' -Xmx3072m'
211
- jdkVersionOption : ' 1.8'
212
- jdkArchitectureOption : ' x64'
215
+ gradleOptions : ' -Xmx3072m -Dorg.gradle.java.home=/Library/Java/JavaVirtualMachines/zulu8.38.0.13-ca-fx-jdk8.0.212-macosx_x64'
213
216
publishJUnitResults : false
214
217
tasks : ' check jacocoTestReport jacocoRootReport -Pheadless=true -Pgeneration -PlogTests --stacktrace'
215
218
- script : |
Original file line number Diff line number Diff line change @@ -46,10 +46,10 @@ dependencies {
46
46
testCompile(files(coreTestOutput))
47
47
testCompile(files(coreTestOutput.resourcesDir))
48
48
49
- // Note: testfx is ONLY usable on JDK 8, so we have to use the versions
50
- testCompile(group = " org.testfx" , name = " testfx-core" , version = " 4.0.5 -alpha" )
51
- testCompile(group = " org.testfx" , name = " testfx-junit" , version = " 4.0.5 -alpha" )
52
- testRuntime(group = " org.testfx" , name = " openjfx-monocle" , version = " 1.8.0_20 " )
49
+ // Note: testfx is ONLY usable on JDK 8, so we have to use the versions compatible with it
50
+ testCompile(group = " org.testfx" , name = " testfx-core" , version = " 4.0.7 -alpha" )
51
+ testCompile(group = " org.testfx" , name = " testfx-junit" , version = " 4.0.7 -alpha" )
52
+ testRuntime(group = " org.testfx" , name = " openjfx-monocle" , version = " 8u76-b04 " )
53
53
testCompile(group = " org.opencv" , name = " opencv-java" , version = " 3.1.0" )
54
54
}
55
55
You can’t perform that action at this time.
0 commit comments