From 65d9dc019ca16f8da20410d7970628738aec321c Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Mon, 7 Jan 2019 21:04:28 -0700 Subject: Sample pipeline not needed, saved in other projects --- sample_pipeline | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 sample_pipeline 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' - } - } - - } - } - } -} -- cgit v1.2.3