add marketplace to jenkinsfile
parent
d4e6fae70f
commit
9a7999e27b
|
@ -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/'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue