X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=build.sh;h=bce3bbd50b35ece1583fbe77767d97a4e9fa4b7c;hb=d252aa929d1afe6892bf23a24cabba3edfa2f876;hp=e548a6a3a730af5e1ebfb7930c69e8925a4e122c;hpb=38d037fcb43052d3db4e1fc0d65f618b5ff6c57b;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/build.sh b/build.sh index e548a6a..bce3bbd 100755 --- a/build.sh +++ b/build.sh @@ -1,62 +1,179 @@ #!/bin/bash -e -SCRIPT_FILE=$(readlink -f $0) -SCRIPT_DIR=$(dirname $SCRIPT_FILE) +SCRIPT_DIR=$(dirname $(readlink -f $0)) +CONFIGURATION=Release +SLN_NAME=_Build +SLN_FILE=$SCRIPT_DIR/$SLN_NAME.sln OUTDIR=$SCRIPT_DIR/Artifacts -RUN_BUILD="dotnet msbuild $SCRIPT_DIR/build/build.proj /nologo" +PROFILES=(mobile tv wearable) +TARGET_ASSEMBLY_DIR=/usr/share/dotnet.tizen/framework +TARGET_PRELOAD_DIR=/usr/share/dotnet.tizen/preload -VERSION_PREFIX=6.0.0 +source $SCRIPT_DIR/packaging/version.txt +VERSION_PREFIX=$(expr $NUGET_VERSION : '\([0-9]\+\.[0-9]\+\.[0-9]\+\)') usage() { echo "Usage: $0 [command] [args]" echo "Commands:" echo " build [module] Build a specific module" echo " full Build all modules in src/ directory" + echo " design Build NUI Design module" + echo " xamlbuild Build NUI XamlBuild module" echo " dummy Generate dummy assemblies of all modules" echo " pack [version] Make a NuGet package with build artifacts" echo " install [target] Install assemblies to the target device" echo " clean Clean all artifacts" } +prepare_solution() { + target=$1; [ -z "$target" ] && target="full" + + dotnet new sln -n $SLN_NAME -o $SCRIPT_DIR --force + if [ "$target" == "public" -o "$target" == "full" ]; then + dotnet sln $SLN_FILE add $SCRIPT_DIR/src/*/*.csproj + fi + if [ "$target" == "internal" -o "$target" == "full" ]; then + dotnet sln $SLN_FILE add $SCRIPT_DIR/internals/src/*/*.csproj + fi + if [ "$target" == "design" ]; then + dotnet sln $SLN_FILE add $SCRIPT_DIR/src/*/*.Design.csproj + else + dotnet sln $SLN_FILE remove $SCRIPT_DIR/src/*/*.Design.csproj + fi + if [ "$target" == "xamlbuild" ]; then + dotnet sln $SLN_FILE add $SCRIPT_DIR/src/*/*.XamlBuild.csproj + else + dotnet sln $SLN_FILE remove $SCRIPT_DIR/src/*/*.XamlBuild.csproj + fi +} + +cleanup_solution() { + rm -f $SLN_FILE +} + +remove_intermediates() { + find $1 -type d \ + \( -name obj -o -name bin \) -print0 | xargs -0 -I {} rm -fr "{}" +} + clean() { - $RUN_BUILD /t:clean + remove_intermediates $SCRIPT_DIR/build/ + remove_intermediates $SCRIPT_DIR/src/ + remove_intermediates $SCRIPT_DIR/internals/src/ + rm -fr $OUTDIR rm -f msbuild.log + cleanup_solution } -build() { +restore() { if [ -d /nuget ]; then - NUGET_SOURCE_OPT="/p:RestoreSources=/nuget" + dotnet restore -s /nuget $@ + else + dotnet restore $@ fi - $RUN_BUILD /t:restore $NUGET_SOURCE_OPT $@ - $RUN_BUILD /t:build /fl $@ } -cmd_build() { +build() { + dotnet build --no-restore -c $CONFIGURATION /fl $@ +} + +copy_artifacts() { + mkdir -p $2 + for proj in $(ls -d1 $1/*/); do + if [ -d $proj/bin/$CONFIGURATION ]; then + cp -fr $proj/bin/$CONFIGURATION/*/* $2 + fi + done +} + +build_artifacts() { + copy_artifacts $SCRIPT_DIR/src $OUTDIR/bin/public + copy_artifacts $SCRIPT_DIR/internals/src $OUTDIR/bin/internal + + # move preload + mkdir -p $OUTDIR/preload + mv $OUTDIR/bin/public/*.preload $OUTDIR/preload 2>/dev/null || : + mv $OUTDIR/bin/internal/*.preload $OUTDIR/preload 2>/dev/null || : + + # merge filelist + for profile in ${PROFILES[@]}; do + list=$(cat $OUTDIR/bin/public/*.$profile.filelist \ + $OUTDIR/bin/internal/*.$profile.filelist \ + | sort | uniq) + rm -f $OUTDIR/$profile.filelist + for item in $list; do + if [[ "$item" == *.preload ]]; then + echo $TARGET_PRELOAD_DIR/$item >> $OUTDIR/$profile.filelist + else + echo $TARGET_ASSEMBLY_DIR/$item >> $OUTDIR/$profile.filelist + fi + done + done +} + +cmd_module_build() { if [ -z "$1" ]; then echo "No module specified." exit 1 fi - PROJECT=$1; shift - build /p:Project=$PROJECT + module=$1; shift; + sources=(src internals/src) + for src in $sources; do + project=$SCRIPT_DIR/$src/$module/$module.csproj + echo $project + if [ -f "$project" ]; then + restore $project + build $project $@ + fi + done } cmd_full_build() { clean - build $@ - cmd_dummy_build $@ + prepare_solution full + restore $SLN_FILE $@ + build $SLN_FILE $@ + cleanup_solution + build_artifacts + cmd_dummy_build } cmd_design_build() { - build /p:BuildDesignAssembly=True $@ - if [ -d "$OUTDIR"/bin/design ]; then - cp -f "$OUTDIR"/bin/design/*.Design.dll "$SCRIPT_DIR"/pkg/Tizen.NET.API*/design/ - fi + prepare_solution design + restore $SLN_FILE + build $SLN_FILE $@ + projects=$(dirname $(ls -1 $SCRIPT_DIR/src/*/*.Design.csproj)) + for proj in $projects; do + if [ -d $proj/bin/$CONFIGURATION ]; then + cp -f $proj/bin/$CONFIGURATION/*/*.Design.dll $SCRIPT_DIR/pkg/Tizen.NET.API*/design/ + fi + done + cleanup_solution +} + +cmd_xamlbuild_build() { + prepare_solution xamlbuild + restore $SLN_FILE + build $SLN_FILE $@ + projects=$(dirname $(ls -1 $SCRIPT_DIR/src/*/*.XamlBuild.csproj)) + for proj in $projects; do + if [ -d $proj/bin/$CONFIGURATION ]; then + cp -f $proj/bin/$CONFIGURATION/*/*.XamlBuild.dll $SCRIPT_DIR/pkg/Tizen.NET.API*/xamlbuild/ + fi + done + cleanup_solution } cmd_dummy_build() { - $RUN_BUILD /t:dummy $@ + if [ ! -d $OUTDIR/bin/public/ref ]; then + echo "No assemblies to read. Build TizenFX first." + exit 1 + fi + mkdir -p $OUTDIR/bin/dummy + dotnet $SCRIPT_DIR/tools/bin/APITool.dll \ + dummy $OUTDIR/bin/public/ref $OUTDIR/bin/dummy } cmd_pack() { @@ -67,16 +184,23 @@ cmd_pack() { popd > /dev/null fi - $RUN_BUILD /t:pack /p:Version=$VERSION + restore $SCRIPT_DIR/build/pack.csproj + nuspecs=$(find $SCRIPT_DIR/pkg/ -name "*.nuspec") + for nuspec in $nuspecs; do + dotnet pack --no-restore --no-build --nologo -o $OUTDIR \ + $SCRIPT_DIR/build/pack.csproj \ + /p:Version=$VERSION \ + /p:NuspecFile=$(readlink -f $nuspec) + done } cmd_install() { DEVICE_ID=$1 RUNTIME_ASSEMBLIES="$OUTDIR/bin/public/*.dll $OUTDIR/bin/internal/*.dll" - TARGET_ASSEMBLY_PATH="/usr/share/dotnet.tizen/framework" device_cnt=$(sdb devices | grep -v "List" | wc -l) + if [ $device_cnt -eq 0 ]; then echo "No connected devices" exit 1 @@ -95,30 +219,27 @@ cmd_install() { sdb $SDB_OPTIONS root on sdb $SDB_OPTIONS shell mount -o remount,rw / - sdb $SDB_OPTIONS push $RUNTIME_ASSEMBLIES $TARGET_ASSEMBLY_PATH + sdb $SDB_OPTIONS push $RUNTIME_ASSEMBLIES $TARGET_ASSEMBLY_DIR - nifile_cnt=$(sdb $SDB_OPTIONS shell find $TARGET_ASSEMBLY_PATH -name '*.ni.dll' | wc -l) + nifile_cnt=$(sdb $SDB_OPTIONS shell find $TARGET_ASSEMBLY_DIR -name '*.ni.dll' | wc -l) if [ $nifile_cnt -gt 0 ]; then - sdb $SDB_OPTIONS shell "rm -f $TARGET_ASSEMBLY_PATH/*.ni.dll" - sdb $SDB_OPTIONS shell nitool --system - sdb $SDB_OPTIONS shell nitool --regen-all-app + sdb $SDB_OPTIONS shell "rm -f $TARGET_ASSEMBLY_DIR/*.ni.dll" + sdb $SDB_OPTIONS shell dotnettool --ni-system + sdb $SDB_OPTIONS shell dotnettool --ni-regen-all-app fi - sdb $SDB_OPTIONS shell chsmack -a '_' $TARGET_ASSEMBLY_PATH/* + sdb $SDB_OPTIONS shell chsmack -a '_' $TARGET_ASSEMBLY_DIR/* } -cmd_clean() { - $RUN_BUILD /t:clean -} - -cmd=$1; shift; +cmd=$1; [ $# -gt 0 ] && shift; case "$cmd" in - build|--build|-b) cmd_build $@ ;; + build|--build|-b) cmd_module_build $@ ;; full |--full |-f) cmd_full_build $@ ;; - dummy|--dummy|-d) cmd_dummy_build $@ ;; design|--design) cmd_design_build $@ ;; + xamlbuild|--xamlbuild) cmd_xamlbuild_build $@ ;; + dummy|--dummy|-d) cmd_dummy_build $@ ;; pack |--pack |-p) cmd_pack $@ ;; install |--install |-i) cmd_install $@ ;; - clean|--clean|-c) cmd_clean $@ ;; + clean|--clean|-c) clean ;; *) usage ;; esac