Jenkinsfile: added script for building components

This commit is contained in:
pavelbannov 2020-01-08 14:01:37 +03:00
parent 680b94a61c
commit 5101fcbf06
2 changed files with 3 additions and 2 deletions

3
build/Jenkinsfile vendored
View File

@ -3,8 +3,7 @@ pipeline {
stages {
stage('Build Components') {
steps {
sh 'yarn install --cwd web/ASC.Web.Components --frozen-lockfile'
sh 'yarn link --cwd packages/asc-web-components'
sh 'build/scripts/components'
}
}
stage('Build Common') {

2
build/scripts/components Normal file
View File

@ -0,0 +1,2 @@
yarn install --cwd web/ASC.Web.Components --frozen-lockfile
yarn link --cwd packages/asc-web-components