X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=build.sh;h=ba1914b04629dd97ae3556c71bed4c23aef6f0dc;hb=5e0cfcf0b91fadca49e6686d2ff7d2d7290279ed;hp=a31b94f22c7fa5a52daefc1a61cf1e3f05ec5f08;hpb=f729290a1c77110c0ca9e0cba59eda25e9ff5be7;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/build.sh b/build.sh index a31b94f..ba1914b 100755 --- a/build.sh +++ b/build.sh @@ -3,27 +3,22 @@ SCRIPT_FILE=$(readlink -f $0) SCRIPT_DIR=$(dirname $SCRIPT_FILE) -# Properties OUTDIR=$SCRIPT_DIR/Artifacts -NUGET_CMD="mono $SCRIPT_DIR/tools/NuGet.exe" -usage() { - echo "Usage: $0 [options] [args]" - echo " Options:" - echo " -h, --help Show this usages message" - echo " -b, --build [module] Build a module" - echo " -f, --full Build all modules in src/ directory. The module should be added in pkg/Tizen.NET.Private.sln" - echo " -d, --dummy Build dummy modules" - echo " -p, --pack Make nuget packages" - echo " -c, --clean Clean all artifacts" -} +RETRY_CMD="$SCRIPT_DIR/tools/scripts/retry.sh" +TIMEOUT_CMD="$SCRIPT_DIR/tools/scripts/timeout.sh" +DOTNET_CMD="$RETRY_CMD $TIMEOUT_CMD 600 dotnet" -cmd_clean() { - rm -fr $OUTDIR - LIST=$(find $SCRIPT_DIR -type d -a -name bin -o -name obj) - for d in $LIST; do - rm -fr $d - done +RUN_BUILD="$DOTNET_CMD msbuild $SCRIPT_DIR/build/build.proj /nologo" + +usage() { + echo "Usage: %0 [command] [args]" + echo "Commands:" + echo " build [module] Build a specific module" + echo " full Build all modules in src/ directory" + echo " dummy Generate dummy assemblies of all modules" + echo " pack [version] Make a NuGet package with build artifacts" + echo " clean Clean all artifacts" } cmd_build() { @@ -31,57 +26,50 @@ cmd_build() { echo "No module specified." exit 1 fi - dotnet build $SCRIPT_DIR/src/$1 --configuration=Release --output=$OUTDIR/bin + if [ -d /nuget ]; then + NUGET_SOURCE_OPT="/p:RestoreSources=/nuget" + fi + $RUN_BUILD /t:restore /p:Project=$1 $NUGET_SOURCE_OPT + $RUN_BUILD /t:build /p:Project=$1 } cmd_full_build() { - dotnet build $SCRIPT_DIR/pkg/Tizen.NET.Private.sln --configuration=Release --output=$OUTDIR/bin -} - -cmd_pack() { - VERSION_FILE=$OUTDIR/Version.txt - if [ -f $VERSION_FILE ]; then - NUGET_VERSION_PREFIX=$(cat $VERSION_FILE | grep Prefix | cut -d: -f2 | sed 's/\r$//') - NUGET_VERSION_SUFFIX=$(cat $VERSION_FILE | grep Suffix | cut -d: -f2 | sed 's/\r$//') - NUGET_VERSION_OPT="-Version $NUGET_VERSION_PREFIX-$NUGET_VERSION_SUFFIX" + if [ -d /nuget ]; then + NUGET_SOURCE_OPT="/p:RestoreSources=/nuget" fi - $NUGET_CMD pack $SCRIPT_DIR/pkg/Tizen.NET.Private.nuspec -Symbols -NoPackageAnalysis $NUGET_VERSION_OPT -BasePath $OUTDIR -OutputDirectory $OUTDIR - $NUGET_CMD pack $SCRIPT_DIR/pkg/Tizen.NET.nuspec -Symbols -NoPackageAnalysis $NUGET_VERSION_OPT -BasePath $OUTDIR -OutputDirectory $OUTDIR + $RUN_BUILD /t:clean + $RUN_BUILD /t:restore $NUGET_SOURCE_OPT + $RUN_BUILD /t:build } cmd_dummy_build() { - dotnet build $SCRIPT_DIR/pkg/Tizen.NET.Dummy.csproj --configuration=Release + if [ -d /nuget ]; then + NUGET_SOURCE_OPT="/p:RestoreSources=/nuget" + fi + $RUN_BUILD /t:restore $NUGET_SOURCE_OPT + $RUN_BUILD /t:dummy $NUGET_SOURCE_OPT } -OPTS=`getopt -o hcbfpd --long help,clean,build,full,pack,dummy -n 'build' -- "$@"` -if [ $? != 0 ] ; then echo "Failed parsing options." >&2 ; usage; exit 1 ; fi -eval set -- "$OPTS" - -FLAG_HELP=false -FLAG_FULL=false -FLAG_BUILD=false -FLAG_CLEAN=false -FLAG_DUMMY=false -FLAG_PACK=false +cmd_pack() { + VERSION=$1 + if [ -z "$VERSION" ]; then + TIMESTAMP=$(date +"%s") + VERSION="5.0.0-local-$TIMESTAMP" + fi -while true; do - case "$1" in - -h|--help) FLAG_HELP=true; shift ;; - -b|--build) FLAG_BUILD=true; shift ;; - -f|--full) FLAG_FULL=true; shift ;; - -d|--dummy) FLAG_DUMMY=true; shift ;; - -p|--pack) FLAG_PACK=true; shift ;; - -c|--clean) FLAG_CLEAN=true; shift ;; - --) shift; break ;; - *) break ;; - esac -done + $RUN_BUILD /t:pack /p:Version=$VERSION +} -if $FLAG_HELP; then usage; exit 0; fi -if $FLAG_CLEAN; then cmd_clean; exit 0; fi -if $FLAG_FULL; then cmd_full_build; exit 0; fi -if $FLAG_BUILD; then cmd_build $@; exit 0; fi -if $FLAG_PACK; then cmd_pack $@; exit 0; fi -if $FLAG_DUMMY; then cmd_dummy_build; exit 0; fi +cmd_clean() { + $RUN_BUILD /t:clean +} -usage; +cmd=$1; shift; +case "$cmd" in + build|--build|-b) cmd_build $@ ;; + full |--full |-f) cmd_full_build $@ ;; + dummy|--dummy|-d) cmd_dummy_build $@ ;; + pack |--pack |-p) cmd_pack $@ ;; + clean|--clean|-c) cmd_clean $@ ;; + *) usage ;; +esac