DocSpace-client/build/Jenkinsfile
2020-01-13 16:51:06 +03:00

77 lines
1.7 KiB
Groovy

pipeline {
agent none
stages {
stage('Build And Test') {
parallel {
stage('Unix') {
agent { label 'net-core' }
stages {
stage('Components') {
steps {
sh 'sh ./build/scripts/components.sh'
}
}
stage('Common') {
steps {
sh 'sh ./build/scripts/common.sh'
}
}
stage('Client') {
steps {
sh 'sh ./build/scripts/client.sh'
}
}
stage('People') {
steps {
sh 'sh ./build/scripts/people.sh'
}
}
stage('Test') {
steps {
sh "cd ${env.WORKSPACE}/web/ASC.Web.Components && yarn test:coverage --ci --reporters=default --reporters=jest-junit || true"
}
post {
success {
junit 'web/ASC.Web.Components/junit.xml'
publishHTML target: [
allowMissing : false,
alwaysLinkToLastBuild: false,
keepAll : true,
reportDir : 'web/ASC.Web.Components/coverage/lcov-report',
reportFiles : 'index.html',
reportName : 'Test Report'
]
}
}
}
}
}
stage('Windows') {
agent { label 'master' }
stages {
stage('Components') {
steps {
bat 'sh build\\scripts\\components.sh'
}
}
stage('Common') {
steps {
bat 'sh build\\scripts\\common.sh'
}
}
stage('Client') {
steps {
bat 'sh build\\scripts\\client.sh'
}
}
stage('People') {
steps {
bat 'sh build\\scripts\\people.sh'
}
}
}
}
}
}
}
}