DocSpace-buildtools/build/Jenkinsfile

117 lines
3.0 KiB
Plaintext
Raw Normal View History

2020-01-06 11:15:57 +00:00
pipeline {
agent none
stages {
2020-01-14 09:05:28 +00:00
stage('Build') {
2020-01-08 13:28:12 +00:00
parallel {
stage('Unix') {
2020-01-08 13:28:12 +00:00
agent { label 'net-core' }
stages {
stage('Components') {
steps {
2020-01-14 13:07:05 +00:00
sh 'echo "$CHANGE_URL"'
sh 'echo "$CHANGE_TITLE"'
sh 'echo "$BUILD_URL"'
2020-01-08 13:28:12 +00:00
sh 'sh ./build/scripts/components.sh'
}
}
stage('Common') {
steps {
sh 'sh ./build/scripts/common.sh'
}
}
2020-01-08 13:28:12 +00:00
stage('Client') {
steps {
sh 'sh ./build/scripts/client.sh'
}
}
stage('People') {
steps {
sh 'sh ./build/scripts/people.sh'
}
}
2020-01-08 12:34:06 +00:00
}
}
2020-01-08 13:28:12 +00:00
stage('Windows') {
agent { label 'master' }
stages {
stage('Components') {
steps {
2020-01-13 13:22:41 +00:00
bat 'sh build\\scripts\\components.sh'
2020-01-08 13:28:12 +00:00
}
2020-01-08 12:34:06 +00:00
}
2020-01-08 13:28:12 +00:00
stage('Common') {
steps {
2020-01-13 13:22:41 +00:00
bat 'sh build\\scripts\\common.sh'
2020-01-08 13:28:12 +00:00
}
}
stage('Client') {
steps {
2020-01-13 13:22:41 +00:00
bat 'sh build\\scripts\\client.sh'
2020-01-08 13:28:12 +00:00
}
}
stage('People') {
steps {
2020-01-13 13:22:41 +00:00
bat 'sh build\\scripts\\people.sh'
2020-01-08 13:28:12 +00:00
}
2020-01-08 13:02:43 +00:00
}
2020-01-08 13:28:12 +00:00
}
2020-01-08 12:34:06 +00:00
}
}
}
2020-01-14 09:05:28 +00:00
stage('Test') {
parallel {
stage('Unix') {
agent { label 'net-core' }
steps {
sh "sh ./build/scripts/components.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 : 'Unix Test Report'
]
2020-01-14 12:28:14 +00:00
publishCoverage adapters: [coberturaAdapter('web/ASC.Web.Components/coverage/cobertura-coverage.xml')]
2020-01-14 09:05:28 +00:00
}
}
}
stage('Windows') {
agent { label 'master' }
steps {
bat "sh build\\scripts\\components.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 : 'Windows Test Report'
]
}
}
}
}
}
2020-01-14 13:07:05 +00:00
stage('Notify') {
agent { label 'net-core' }
options { skipDefaultCheckout() }
environment {
Telegram_Token = credentials('telegram_token')
Chat_Id = -381345297
}
steps {
def message_text = '${GIT_COMMIT}'
sh 'curl -s -X GET "https://api.telegram.org/bot$Telegram_Token/sendMessage?chat_id=$Chat_Id&text=$message_text"'
}
}
2020-01-06 11:15:57 +00:00
}
}