Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Commit

Permalink
Added a simple Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tfennelly committed Sep 23, 2016
1 parent a5c04bb commit 13e7e88
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!groovy

node {
deleteDir()
checkout scm

docker.image('headless-ath').inside {
withEnv(['GIT_COMMITTER_EMAIL=me@hatescake.com','GIT_COMMITTER_NAME=Hates','GIT_AUTHOR_NAME=Cake','GIT_AUTHOR_EMAIL=hates@cake.com']) {
try {
} catch(err) {
currentBuild.result = "FAILURE"
} finally {
deleteDir()
}
}
}
}

0 comments on commit 13e7e88

Please sign in to comment.