From 00e4d7f689bb19981d3b4192118eb5612b255778 Mon Sep 17 00:00:00 2001 From: Chris Veilleux Date: Thu, 24 Jan 2019 15:57:33 -0600 Subject: [PATCH] adding Jenkinsfile --- Jenkinsfile | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..3d67e0b --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,26 @@ +pipeline { + agent any + + stages { + stage('Build') { + steps { + echo 'Building..' + sh 'npm install' + sh 'ng build --project globalnav' + sh 'ng build --project page-not-found' + sh 'ng build --project account' + } + } + stage('Test') { + steps { + echo 'Testing..' + echo 'No testing included in this pipeline' + } + } + stage('Deploy') { + steps { + echo 'Deploying....' + } + } + } +}