All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good
add post phase remove deliver stage from pipeline make headless test actually headless removing glfw from headless main remove glfw from globals jenkins more work jenkins env var work maven flag fixs Add deliver step junit declaration work add empty results files jenkins maven text debug work attempt profile in jenkins maven add testing fix maven version add maven versionj label maven as tool convert to no container build again more jenkins work more jenkins work reorg debug jenkins work Co-authored-by: austin <austin@austinwhoover.com> Reviewed-on: https://git.austinwhoover.com/electrosphere/Renderer/pulls/135
25 lines
510 B
Groovy
25 lines
510 B
Groovy
pipeline {
|
|
agent any
|
|
tools {
|
|
maven '3.9.6'
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'mvn --version'
|
|
sh 'java -version'
|
|
sh 'mvn -B -DskipTests clean package'
|
|
}
|
|
}
|
|
stage('Test') {
|
|
steps {
|
|
sh 'mvn test'
|
|
}
|
|
post {
|
|
always {
|
|
junit 'target/surefire-reports/*.xml'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |