add adf-testing to the pipeline and publish (#4380)

This commit is contained in:
Maurizio Vitale
2019-03-03 12:56:20 +00:00
committed by GitHub
parent 3ac0018160
commit 0afc5e95b4
6 changed files with 21 additions and 0 deletions
+9
View File
@@ -118,6 +118,15 @@ do
fi
done
#testing
for i in "${libs[@]}"
do
if [ "$i" == "testing" ] ; then
AFFECTED_LIBS=$AFFECTED_LIBS" testing$"
fi
done
#process-services-cloud
for i in "${libs[@]}"
do
+1
View File
@@ -18,6 +18,7 @@ eval EXECLINT=true
eval projects=( "core"
"content-services"
"insights"
"testing"
"process-services"
"process-services-cloud"
"extensions" )
+1
View File
@@ -8,6 +8,7 @@ eval projects=( "adf-core"
"adf-insights"
"adf-content-services"
"adf-extensions"
"adf-testing"
"adf-process-services"
"adf-process-services-cloud" )
+1
View File
@@ -19,6 +19,7 @@ eval EXEC_BUILD=true
eval projects=(
"core"
"insights"
"testing"
"content-services"
"process-services"
"process-services-cloud"
+8
View File
@@ -78,3 +78,11 @@ do
./scripts/build-insights.sh || exit 1;
fi
done
#testing
for i in "${libs[@]}"
do
if [ "$i" == "testing$" ] ; then
./scripts/build-testing.sh || exit 1;
fi
done
+1
View File
@@ -13,6 +13,7 @@ eval projects=( "core"
"process-services"
"process-services-cloud"
"insights"
"testing"
"extensions" )
cd `dirname $0`