add marketplace to jenkinsfile

pull/3/head
Chris Veilleux 2019-03-29 12:11:31 -05:00
parent d4e6fae70f
commit 9a7999e27b
1 changed files with 9 additions and 0 deletions

9
Jenkinsfile vendored
View File

@ -15,6 +15,7 @@ pipeline {
sh 'ng build --project globalnav'
sh 'ng build --project page-not-found'
sh 'ng build --project account --configuration development'
sh 'ng build --project market --configuration development'
sh 'ng build --project sso --configuration development'
}
}
@ -31,6 +32,7 @@ pipeline {
sh 'ng build --project globalnav'
sh 'ng build --project page-not-found'
sh 'ng build --project account --configuration test'
sh 'ng build --project market --configuration test'
sh 'ng build --project sso --configuration test'
}
}
@ -55,6 +57,13 @@ pipeline {
sh 'scp -r dist/globalnav root@198.199.90.118:/var/www/'
sh 'scp -r dist/page-not-found root@198.199.90.118:/var/www/'
sh 'scp -r dist/sso root@198.199.90.118:/var/www/'
// Deploy single sign on application and its associated libraries
echo 'Deploying single sign on application...'
sh 'scp -r dist/shared root@198.211.106.110:/var/www/'
sh 'scp -r dist/globalnav root@198.211.106.110:/var/www/'
sh 'scp -r dist/page-not-found root@198.211.106.110:/var/www/'
sh 'scp -r dist/market root@198.211.106.110:/var/www/'
}
}
}