Skip to content
Snippets Groups Projects
Commit c05624fa authored by Hallvard Trætteberg's avatar Hallvard Trætteberg
Browse files

Try something else

parent 58b0fe1c
Branches Pipe-and-Filter
No related tags found
No related merge requests found
...@@ -26,19 +26,17 @@ javafx { ...@@ -26,19 +26,17 @@ javafx {
// launch debugger using Remote Java Application debug launch configuration // launch debugger using Remote Java Application debug launch configuration
} }
test { sourceSets {
// don't run UI test on server (that cannot run javafx) main {
if (project.hasProperty('gitlab-ci')) { java {
exclude 'simpleex.ui/*' // don't include UI without FxMapControl installed
} if (project.hasProperty('gitlab-ci')) {
exclude 'simpleex.ui/*'
}
}
}
} }
compile {
// don't compile UI without FxMapControl installed
if (project.hasProperty('gitlab-ci')) {
exclude 'simpleex.ui/*'
}
}
test { test {
// don't run UI test on server (that cannot run javafx) // don't run UI test on server (that cannot run javafx)
if (project.hasProperty('gitlab-ci')) { if (project.hasProperty('gitlab-ci')) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment