selene-ui/Jenkinsfile

28 lines
664 B
Plaintext
Raw Normal View History

2019-01-24 21:57:33 +00:00
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....'
2019-01-24 22:20:42 +00:00
sh 'scp dist root@157.230.91.255:/var/www/'
2019-01-24 21:57:33 +00:00
}
}
}
}