-
-
Save abayer/9964eb7ff7a1a6b86a054e968c26c772 to your computer and use it in GitHub Desktop.
Example declarative pipeline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent none | |
environment { | |
MAVEN_OPTS = "-Xmx1024m" | |
} | |
parameters { | |
stringParam(defaultValue: "install", description: "What Maven goal to call", name: "MAVEN_GOAL") | |
} | |
jobProperties { | |
buildDiscarder(logRotator(numToKeepStr:'1')) | |
} | |
triggers { | |
cron('@daily') | |
} | |
stages { | |
stage("Build") { | |
agent docker: "maven:3.3.9-jdk-8" | |
steps { | |
checkout scm | |
sh "mvn clean ${env.MAVEN_GOAL} -B -Dmaven.test.failure.ignore=true" | |
} | |
post { | |
success { | |
archive "**/target/**/*.jar" | |
junit '**/target/surefire-reports/*.xml' | |
} | |
} | |
} | |
} | |
postBuild { | |
always { | |
echo "Build done" | |
} | |
} | |
notifications { | |
success { | |
mail to: "[email protected]", subject: "Build Successful" | |
} | |
failure { | |
mail to: "[email protected]", subject: "Build Failed" | |
} | |
unstable { | |
mail to: "[email protected]", subject: "Build Unstable" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment