diff options
| -rw-r--r-- | Jenkinsfile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..52a7f68 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,15 @@ +pipeline { + agent { label "master" } + stages { + stage("Build") { + steps { + sh "docker build -t githunt:latest ." + } + } + } + post { + always { + sendNotifications currentBuild.result + } + } +} |
