staged builds
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good
This commit is contained in:
parent
af6bdc6b43
commit
41a145a5bd
14
Jenkinsfile
vendored
14
Jenkinsfile
vendored
@ -4,12 +4,24 @@ pipeline {
|
||||
maven '3.9.6'
|
||||
}
|
||||
stages {
|
||||
stage('Build') {
|
||||
stage('Setup') {
|
||||
steps {
|
||||
sh "chmod +x -R ${env.WORKSPACE}"
|
||||
}
|
||||
}
|
||||
stage ('Check Environment') {
|
||||
steps {
|
||||
sh 'mvn --version'
|
||||
sh 'java -version'
|
||||
}
|
||||
}
|
||||
stage('Build (Engine)') {
|
||||
steps {
|
||||
sh 'mvn -B -DskipTests clean package'
|
||||
}
|
||||
}
|
||||
stage('Build (Documentation)') {
|
||||
steps {
|
||||
sh 'cd ./docs && doxygen ./Doxyfile'
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user