diff options
author | Cody Hiar <codyfh@gmail.com> | 2019-01-07 21:04:28 -0700 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2019-01-07 21:04:28 -0700 |
commit | 65d9dc019ca16f8da20410d7970628738aec321c (patch) | |
tree | 42a4b5f851b86d2bf6029811e83f14fed3f32378 /sample_pipeline | |
parent | 6453a5e76e3994f06f5bf7f86c4f7fc249149fbd (diff) |
Sample pipeline not needed, saved in other projects
Diffstat (limited to 'sample_pipeline')
-rw-r--r-- | sample_pipeline | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/sample_pipeline b/sample_pipeline deleted file mode 100644 index 22e4de5..0000000 --- a/sample_pipeline +++ /dev/null @@ -1,33 +0,0 @@ -pipeline { - triggers { - pollSCM('H/15 * * * *') - } - environment { - registry = "thornycrackers/neovim" - registryCredential = 'dockerhub' - } - agent any - stages { - stage('Cloning Git') { - steps { - git 'https://github.com/thornycrackers/docker-neovim' - } - } - stage('Build') { - steps { - sh 'make setup' - sh 'make build' - } - } - stage('Push Image'){ - steps { - script { - docker.withRegistry( '', registryCredential ) { - sh 'make push' - } - } - - } - } - } -} |