diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2020-10-18 09:30:44 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2020-10-18 09:30:44 +0300 |
| commit | 87ded52853c468e09d07b071d76c1e6a0e7f9cc9 (patch) | |
| tree | 81133affbc9e5eff657adc96aca944fc488859d5 | |
| parent | Add dhall language. (diff) | |
| download | githunt-87ded52853c468e09d07b071d76c1e6a0e7f9cc9.tar.gz | |
Add Jenkinsfile.
| -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 + } + } +} |
