Add common-map3d to jenkins build
Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit

This commit is contained in:
Willem Dantuma
2020-10-02 17:23:11 +02:00
parent 1301a9d082
commit 7696ddd8d2
3 changed files with 14 additions and 16 deletions

View File

@@ -13,13 +13,16 @@ pipeline {
npm install
cd ../common-map
npm install
cd ../common-map3d
npm install
'''
}
}
stage('build'){
steps {
sh '''ng build common
ng build common-map'''
ng build common-map
ng build common-map3d'''
}
}
stage('npm publish'){
@@ -29,6 +32,9 @@ pipeline {
npm publish
cd ../common-map
npm version ${PACKAGE_VERSION}
npm publish
cd ../common-map3d
npm version ${PACKAGE_VERSION}
npm publish'''
}
}