From ebca66012e025c3b8be0ca04aa600243c813d8c8 Mon Sep 17 00:00:00 2001 From: clough Date: Tue, 3 Sep 2019 13:50:57 -0700 Subject: [PATCH 1/2] Add config step --- Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index aa42b8f..91dd218 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,5 +21,11 @@ pipeline { } } + stage('Build Alternate Configurations') { + steps { + echo 'Building alternate configurations..." + } + } + } } \ No newline at end of file From f55cf8b43f699b2985282ac2a61a4548f434af07 Mon Sep 17 00:00:00 2001 From: clough Date: Tue, 3 Sep 2019 13:55:20 -0700 Subject: [PATCH 2/2] Fix Jenkinsfile syntax error --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 91dd218..bf0db7f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,7 +23,7 @@ pipeline { stage('Build Alternate Configurations') { steps { - echo 'Building alternate configurations..." + echo 'Building alternate configurations...' } }