jenkins xvfb
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2024-08-01 16:07:52 -04:00
parent 7b474bf8b3
commit a03b3f8085

17
Jenkinsfile vendored
View File

@ -15,7 +15,22 @@ pipeline {
}
stage('Test') {
steps {
sh 'mvn test'
wrap(
[
$class: 'Xvfb',
additionalOptions: '',
assignedLabels: '',
autoDisplayName: true,
debug: true,
displayNameOffset: 0,
installationName: 'Default',
parallelBuild: true,
screen: '1920x1080x24',
timeout: 25
]
) {
sh 'mvn test'
}
}
post {
always {