Skip to content
Snippets Groups Projects
Commit 23036cbf authored by Stefan Hauffe's avatar Stefan Hauffe
Browse files

Basic Jenkinsfile for demonstration

parent 6e44205b
Branches master
No related tags found
No related merge requests found
import java.util.zip.ZipEntry
pipeline {
agent {
node {
label 'ozgcloud-jenkins-build-agent-jdk21'
}
}
stages {
stage('Build ZufiManager DEMO') {
steps {
script {
FAILED_STAGE = env.STAGE_NAME
}
configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) {
sh 'mvn -s $MAVEN_SETTINGS clean install'
}
}
}
}
}
\ No newline at end of file
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