From: Denys Dmytriyenko <[email protected]> Signed-off-by: Denys Dmytriyenko <[email protected]> --- build-oesdk.sh | 47 ----------------------------------------------- 1 file changed, 47 deletions(-)
diff --git a/build-oesdk.sh b/build-oesdk.sh index 038a7ab..fb5f725 100755 --- a/build-oesdk.sh +++ b/build-oesdk.sh @@ -8,11 +8,8 @@ trap 'test -z "`jobs -p`" || kill `jobs -p` > /dev/null 2>&1; echo "I got a sign # script. source ./lib/oesdk/config-build-env source ./lib/common-functions -source ./lib/run-opentest source ./lib/oesdk/bitbake-test-sdk-image source ./lib/oesdk/machine-specific-functions -source ./lib/oesdk/package-sdks -source ./lib/oesdk/generate-report # This variable holds the architectures that are being built based # on the machines. @@ -193,48 +190,4 @@ done # Wait for all build and test processes to finish wait -# Package the SDKs -if [ "$PRODUCTIZE_SDK" == "true" ] -then - package_sdks -fi - -# Assemble the build report -generate_report - -# If COPY_TO_WEB is set then copy to the WEB_HOST. If we did not -# productize the SDK then there is not much need to copy the files. -if [ "$COPY_TO_WEB" == "true" ] -then - if [ "$PRODUCTIZE_SDK" == "true" ] - then - echo "Copying productized images" - scp -r $DEPLOY_ROOT $WEB_HOST/ - # If the copy went well then clean out the DEPLOY_ROOT directory - # If the CLEAN_AFTER_COPY variable is true. - # TODO: Maybe this should be cleaned by jenkins if I want that. - if [ "$?" == "0" ] - then - if [ "$CLEAN_AFTER_COPY" == "true" ] - then - rm -rf $DEPLOY_ROOT - fi - fi - fi - - # If COPY_DEPLOY_TO_WEB is set then copy to the WEB_HOST. - if [ "$COPY_DEPLOY_TO_WEB" == "true" ] - then - echo "Copying deploy/ directory" - rsync -az --delete $BUILD_ROOT/build-*/arago-tmp*/deploy/ $WEB_HOST/deploy/ - fi - - # If COPY_GOLDEN_TO_WEB is set then copy to the WEB_HOST. - if [ "$COPY_GOLDEN_TO_WEB" == "true" ] - then - echo "Copying golden/ directory" - rsync -az --delete $BUILD_ROOT/build-*/golden/ $WEB_HOST/golden/ - fi -fi - echo "Build Finished" -- 2.7.4 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#13390): https://lists.yoctoproject.org/g/meta-arago/message/13390 Mute This Topic: https://lists.yoctoproject.org/mt/87252579/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
