From a3ff655f710a4675c0ffa65675928fb486833d7d Mon Sep 17 00:00:00 2001 From: Spencer Nicholls <57418435+nichollsspencer@users.noreply.github.com> Date: Wed, 1 Dec 2021 09:25:06 -0600 Subject: [PATCH] Delete 05_01.md --- 05_01.md | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 05_01.md diff --git a/05_01.md b/05_01.md deleted file mode 100644 index 185fdea..0000000 --- a/05_01.md +++ /dev/null @@ -1,39 +0,0 @@ -# Learning Jenkins, 05-01: Pipeline as Code -Create a pipeline job. - -Paste the following code in the pipeline definition: -``` -pipeline { - agent any - options { - buildDiscarder(logRotator(daysToKeepStr: '10', numToKeepStr: '10')) - timeout(time: 12, unit: 'HOURS') - timestamps() - } - triggers { - cron '@midnight' - } - stages { - stage('Initialize') { - steps { - echo 'Initializing..' - } - } - stage('Build') { - steps { - echo 'Building..' - } - } - stage('Test') { - steps { - echo 'Testing..' - } - } - stage('Deploy') { - steps { - echo 'Deploying....' - } - } - } -} -```