diff --git a/CMakeLists.txt b/CMakeLists.txt index 30c1a0e496..95913ee8c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -265,16 +265,6 @@ find_package(Threads REQUIRED) # Scripts -if (NOT CMAKE_HOST_WIN32) - execute_process( - COMMAND "${OMIM_ROOT}/tools/unix/check_cert.sh" - RESULT_VARIABLE CheckCertResult - ) - if (CheckCertResult) - message(FATAL_ERROR "Certificate check failed") - endif() -endif() - if (NOT PLATFORM_IPHONE AND NOT PLATFORM_ANDROID) list(APPEND qt_components Core Network) if (NOT SKIP_QT_GUI OR NOT SKIP_TESTS OR PYBINDINGS) diff --git a/iphone/Maps/run-script-for-cmake.sh b/iphone/Maps/run-script-for-cmake.sh deleted file mode 100755 index dd87dcc18e..0000000000 --- a/iphone/Maps/run-script-for-cmake.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash -# This script builds C++ core libs and inserts some private variables. -# Should be run from Run Script phase in target's settings. - -LOWERED_CONFIG=`echo $CONFIGURATION | tr [A-Z] [a-z]` -CONF="debug" -if [[ "$LOWERED_CONFIG" == *release* || "$LOWERED_CONFIG" == *production* || "$LOWERED_CONFIG" == *adhoc* ]]; then - CONF="release" -fi - -# Respect "Build for active arch only" project setting. -if [[ "$ONLY_ACTIVE_ARCH" == YES ]]; then - if [[ ! -z $CURRENT_ARCH ]]; then - VALID_ARCHS=${ARCHS[0]} - fi -fi - -echo "Building $CONF configuration" -bash "$SRCROOT/../../tools/autobuild/ios_cmake.sh" $CONF diff --git a/iphone/Maps/run-script-for-target.sh b/iphone/Maps/run-script-for-target.sh deleted file mode 100644 index 26584fb5f3..0000000000 --- a/iphone/Maps/run-script-for-target.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash -# This script builds C++ core libs and inserts some private variables. -# Should be run from Run Script phase in target's settings. - -LOWERED_CONFIG=`echo $CONFIGURATION | tr [A-Z] [a-z]` -CONF="simulator" -DRAPE_CONF="old_renderer" -if [[ "$LOWERED_CONFIG" == *production* || "$LOWERED_CONFIG" == *adhoc* ]]; then - CONF="production" -elif [[ "$LOWERED_CONFIG" == *debug* ]]; then - CONF="debug" -elif [[ "$LOWERED_CONFIG" == *release* ]]; then - if [[ "$LOWERED_CONFIG" == *simulator* ]]; then - CONF="simulator-release" - else - CONF="release" - fi -fi - -if [[ "$LOWERED_CONFIG" == *drape* ]]; then - echo "Drape renderer building" - DRAPE_CONF="drape" -fi - -# Respect "Build for active arch only" project setting. -if [[ "$ONLY_ACTIVE_ARCH" == YES ]]; then - if [[ ! -z $CURRENT_ARCH ]]; then - VALID_ARCHS=${ARCHS[0]} - fi -fi - -echo "Building $CONF configuration" -bash "$SRCROOT/../../tools/autobuild/ios.sh" $CONF $DRAPE_CONF diff --git a/tools/android/mapswithmetests.keystore b/tools/android/mapswithmetests.keystore deleted file mode 100644 index 3f0e364f05..0000000000 Binary files a/tools/android/mapswithmetests.keystore and /dev/null differ diff --git a/tools/autobuild/android.sh b/tools/autobuild/android.sh deleted file mode 100755 index 377f3d3af3..0000000000 --- a/tools/autobuild/android.sh +++ /dev/null @@ -1,39 +0,0 @@ -# Script builds only C++ native libs. To build also jni part see another script: eclipse[*].sh - -set -e -u -x - -MY_PATH="`dirname \"$0\"`" # relative -MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized - -if [[ $# < 1 ]]; then - echo "Usage: $0 [armeabi-v7a|x86] [android-PLATFORM_NUMBER]" - exit 1 -fi -CONFIGURATION="$1" - -source "$MY_PATH/build.sh" -source "$MY_PATH/ndk_helper.sh" - -MKSPEC="$MY_PATH/../mkspecs/android-clang" -QMAKE_PARAMS="CONFIG+=${CONFIGURATION}" -SHADOW_DIR_BASE="$MY_PATH/../../../omim-android" - -# Try to read ndk root path from android/local.properties file -export NDK_ROOT=$(GetNdkRoot) || ( echo "Can't read NDK root path from android/local.properties"; exit 1 ) -export NDK_HOST=$(GetNdkHost) || ( echo "Can't get your OS type, please check tools/autobuild/ndk_helper.sh script"; exit 1 ) -if [[ $# > 2 ]] ; then - export NDK_PLATFORM=$3 -fi - -if [[ $# > 1 ]] ; then - NDK_ABI_LIST=$2 -else - NDK_ABI_LIST=(armeabi-v7a x86) -fi - - -for abi in "${NDK_ABI_LIST[@]}"; do - SHADOW_DIR="${SHADOW_DIR_BASE}-${CONFIGURATION}-${abi}" - export NDK_ABI="$abi" - BuildQt "$SHADOW_DIR" "$MKSPEC" "$QMAKE_PARAMS" 1>&2 || ( echo "ERROR while building $abi config"; exit 1 ) -done diff --git a/tools/autobuild/build.sh b/tools/autobuild/build.sh deleted file mode 100644 index 0704c96d57..0000000000 --- a/tools/autobuild/build.sh +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/bash -set -e -x -u - -MY_PATH="`dirname \"$0\"`" # relative -MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized - -source "$MY_PATH/detect_qmake.sh" - -# Prints number of cores to stdout -GetCPUCores() { - case "$OSTYPE" in - # it's GitBash under Windows - cygwin) echo $NUMBER_OF_PROCESSORS - ;; - linux-gnu) grep -c ^processor /proc/cpuinfo 2>/dev/null - ;; - darwin*) sysctl -n hw.ncpu - ;; - *) echo "Unsupported platform in $0" - exit 1 - ;; - esac - return 0 -} - - -# Replaces "/cygwin/c" prefix with "c:" one on Windows platform. -# Does nothing under other OS. -# 1st param: path to be modified. -StripCygwinPrefix() { - if [[ $(GetNdkHost) == "windows-x86_64" ]]; then - echo "c:`(echo "$1" | cut -c 12-)`" - return 0 - fi - - echo "$1" - return 0 -} - -# 1st param: shadow directory path -# 2nd param: mkspec -# 3rd param: additional qmake parameters -BuildQt() { - ( - echo "ERROR! The script is obsolete. Rewrite with cmake" - ) -} diff --git a/tools/autobuild/debian-package.sh b/tools/autobuild/debian-package.sh deleted file mode 100644 index 11be81d045..0000000000 --- a/tools/autobuild/debian-package.sh +++ /dev/null @@ -1,81 +0,0 @@ -#!/bin/bash - -send_buildlogs () { - pushd /home/osm/ - for i in build-service/*build; do tail -n 70 $i | mail -a $i -s $i dev@mapswithme.com; done - rm build-service/*build - popd -} - -drop_buildlogs () { - pushd /home/osm/ - rm build-service/*build - popd -} - -send_beta () { - mv $1 $2 - git log --since="`date -d "3 day ago"`" | mail -a $2 -s "[beta]$2" dev@mapswithme.com -} - - - -cd /home/osm/build-service -rm *.build -cd omim -git remote update -git checkout -f origin/master -#git pull -git reset --hard HEAD -git submodule update --init -export PATH=/usr/lib/ccache:$PATH -# For correct QT version -export PATH=/home/osm/Qt5.2.0/5.2.0/gcc_64/bin:$PATH -export QT_HOME=/home/osm/Qt5.2.0/5.2.0/gcc_64 - -cd tools/android -python set_up_android.py --sdk /home/osm/android/adt-bundle-linux-x86_64-20130917/sdk --ndk /home/osm/android/android-ndk-r9 - -BUILD_DATE=`date +"%Y%m%d-%H%M"`-`hostname`-`git rev-parse HEAD | cut -c-10` - -# Android Pro -cd ../../android/MapsWithMePro -cat AndroidManifest.xml | sed s/android:versionName=\"/android:versionName=\"auto-$BUILD_DATE/g > AndroidManifest-new.xml; mv AndroidManifest-new.xml AndroidManifest.xml -NDK_CCACHE=ccache timeout -k 8h 4h ant production > ~/build-service/MapsWithMePro-production-android.build -cp bin/MapsWithMePro-production.apk ~/build-service -if [ "$?" = 0 ]; then - drop_buildlogs - send_beta bin/MapsWithMePro-production.apk MapsWithMePro-production-$BUILD_DATE.apk $BUILD_DATE -#else -# send_buildlogs -fi - - -# Android Lite -cd ../../android/MapsWithMeLite -cat AndroidManifest.xml | sed s/android:versionName=\"/android:versionName=\"auto-$BUILD_DATE/g > AndroidManifest-new.xml; mv AndroidManifest-new.xml AndroidManifest.xml -NDK_CCACHE=ccache timeout -k 8h 4h ant production > ~/build-service/MapsWithMeLite-production-android.build -cp bin/MapsWithMeLite-production.apk ~/build-service -if [ "$?" = 0 ]; then - drop_buildlogs - send_beta bin/MapsWithMeLite-production.apk MapsWithMeLite-production-$BUILD_DATE.apk $BUILD_DATE -#else -# send_buildlogs -fi - -drop_buildlogs - -# Ubuntu Raring AMD64 -ARCH=amd64 DIST=raring timeout -k 8h 4h pdebuild --debbuildopts "-b -j9" -if [ "$?" = 0 ]; then drop_buildlogs; else send_buildlogs; fi - -# Ubuntu Raring i386 -ARCH=i386 DIST=raring timeout -k 8h 4h pdebuild --debbuildopts "-b -j9" -if [ "$?" = 0 ]; then drop_buildlogs; else send_buildlogs; fi - -#ARCH=armel DIST=stable timeout -k 8h 4h pdebuild --debbuildopts "-b -j9" -#if [ "$?" = 0 ]; then drop_buildlogs; else send_buildlogs; fi - -#ARCH=armhf DIST=raring timeout -k 8h 4h pdebuild --debbuildopts "-b -j9" -#if [ "$?" = 0 ]; then drop_buildlogs; else send_buildlogs; fi - diff --git a/tools/autobuild/detect_xcode.sh b/tools/autobuild/detect_xcode.sh deleted file mode 100644 index 8f5c342cd2..0000000000 --- a/tools/autobuild/detect_xcode.sh +++ /dev/null @@ -1,16 +0,0 @@ -# Prints path to directory with iOS SDK -# Pameter is configuration name: -# Returns 1 in case of not found and 0 in case of success -PrintIOSSDKPath() { - if [[ $1 == *simulator* ]]; then - XCODE_SDK_PATH=`xcodebuild -sdk iphonesimulator -version Path` - else - XCODE_SDK_PATH=`xcodebuild -sdk iphoneos -version Path` - fi - if [ -z "$XCODE_SDK_PATH" ]; then - return 1 - else - echo -n "$XCODE_SDK_PATH" - fi - return 0 -} diff --git a/tools/autobuild/eclipse-debug.sh b/tools/autobuild/eclipse-debug.sh deleted file mode 100644 index 9b4dbf358d..0000000000 --- a/tools/autobuild/eclipse-debug.sh +++ /dev/null @@ -1,19 +0,0 @@ -# Add it to Eclipse MWM Library properties -> Debug configuration -> Build command - -set -e -u -x - -LOCAL_DIRNAME="$(dirname "$0")" - -# We DO NOT clean native C++ libs for faster Eclipse builds -if [[ "$1" != "clean" ]] ; then - bash $LOCAL_DIRNAME/android.sh debug armeabi -fi - -source "$LOCAL_DIRNAME/ndk_helper.sh" - -export NDK_PROJECT_PATH="$LOCAL_DIRNAME/../../android" -if [[ "$1" != "clean" ]] ; then - $(GetNdkRoot)/ndk-build APP_ABI=armeabi V=1 NDK_DEBUG=1 DEBUG=1 -else - $(GetNdkRoot)/ndk-build clean V=1 NDK_DEBUG=1 DEBUG=1 -fi diff --git a/tools/autobuild/function.sh b/tools/autobuild/function.sh deleted file mode 100644 index 2ed3a88e14..0000000000 --- a/tools/autobuild/function.sh +++ /dev/null @@ -1,36 +0,0 @@ -# to threat ! as a char -set +H - -# this array will hold all executed commands logs -declare -a FUNCTION_CHECKED_CALL_LOGS -FUNCTION_CHECKED_LOG_INDEX=0 - -FUNCTION_START_DATE=$(date -u) - -LoggedCall() { - echo "\$ $*" - local RESULT - RESULT=$($* 2>&1) - if [ $? != 0 ]; then - echo "ERROR: Command failed with code $?" - fi - echo "$RESULT" -} - -Call() { - FUNCTION_CHECKED_CALL_LOGS[FUNCTION_CHECKED_LOG_INDEX]=$(LoggedCall $*) - let FUNCTION_CHECKED_LOG_INDEX++ -} - -PrintLogs() { - echo "****** Started on $FUNCTION_START_DATE ******" - for logLine in "${FUNCTION_CHECKED_CALL_LOGS[@]}"; do - echo "$logLine" - done -} - -CD() -{ - echo "\$ cd $1" - cd $1 || return -} diff --git a/tools/autobuild/ios.sh b/tools/autobuild/ios.sh deleted file mode 100644 index 571747c2ce..0000000000 --- a/tools/autobuild/ios.sh +++ /dev/null @@ -1,63 +0,0 @@ -# Script takes configuration as a parameter and optional clean keyword. -# Possible configurations: debug release production - -set -e -u -x - -MY_PATH="`dirname \"$0\"`" # relative -MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized - -if [[ $# < 1 ]]; then - echo "Usage: $0 [clean]" - exit 1 -fi -CONFIGURATION="$1" - -source "$MY_PATH/build.sh" -source "$MY_PATH/detect_xcode.sh" - -SDK_ROOT="$(PrintIOSSDKPath "$CONFIGURATION")" -if [[ $? -ne 0 ]]; then - echo "Is XCode installed? Check tools/autobuild/detect_xcode.sh script" - exit 1 -fi -export SDK_ROOT - -SHADOW_DIR="$MY_PATH/../../../omim-iphone" - -if [[ $CONFIGURATION == *production* ]]; then - QMAKE_PARAMS="CONFIG+=production CONFIG+=release" - SHADOW_DIR="${SHADOW_DIR}-production" -elif [[ $CONFIGURATION == *release* ]]; then - QMAKE_PARAMS="CONFIG+=release" - SHADOW_DIR="${SHADOW_DIR}-release" -elif [[ $CONFIGURATION == *debug* || $CONFIGURATION == "simulator" ]]; then - QMAKE_PARAMS="CONFIG+=debug" - SHADOW_DIR="${SHADOW_DIR}-debug" -else - echo "Unrecognized configuration passed to the script: $CONFIGURATION" - exit 1 -fi - -if [[ $CONFIGURATION == *simulator* ]]; then - MKSPEC="$MY_PATH/../mkspecs/iphonesimulator" -else - MKSPEC="$MY_PATH/../mkspecs/iphonedevice" -fi - -if [[ $GCC_VERSION == *clang* ]]; then - MKSPEC="${MKSPEC}-clang" -else - MKSPEC="${MKSPEC}-llvm" -fi - -# Build libs for each architecture in separate folders -for ARCH in $VALID_ARCHS; do - if [[ $# > 1 && "$2" == "clean" ]] ; then - echo "Cleaning $CONFIGURATION configuration..." - rm -rf "$SHADOW_DIR-$ARCH" - else - # pass build architecture to qmake as an environment variable, see mkspecs/iphone*/qmake.conf - export BUILD_ARCHITECTURE="$ARCH" - BuildQt "$SHADOW_DIR-$ARCH" "$MKSPEC" "$QMAKE_PARAMS" || ( echo "ERROR while building $CONFIGURATION config"; exit 1 ) - fi -done diff --git a/tools/autobuild/ios_cmake.sh b/tools/autobuild/ios_cmake.sh deleted file mode 100755 index badf62e38b..0000000000 --- a/tools/autobuild/ios_cmake.sh +++ /dev/null @@ -1,85 +0,0 @@ -# Script takes configuration as a parameter -set -e -u -x - -MY_PATH="`dirname \"$0\"`" # relative -MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized - -if [[ $# < 1 ]]; then - echo "Usage: $0 " - exit 1 -fi -CONFIGURATION="$1" - -source "$MY_PATH/detect_xcode.sh" - -GetCPUCores() { - case "$OSTYPE" in - # it's GitBash under Windows - cygwin) echo $NUMBER_OF_PROCESSORS - ;; - linux-gnu) grep -c ^processor /proc/cpuinfo 2>/dev/null - ;; - darwin*) sysctl -n hw.ncpu - ;; - *) echo "Unsupported platform in $0" - exit 1 - ;; - esac - return 0 -} - -BuildCmake() { - ( - SHADOW_DIR="$1" - BUILD_TYPE="$2" - - mkdir -p "$SHADOW_DIR" - cd "$SHADOW_DIR" - pwd - echo "Launching cmake..." - CC=$CC CXX=$CXX cmake -r "$BUILD_TYPE" -DCMAKE_OSX_ARCHITECTURES=$ARCH -DSKIP_TESTS=TRUE -DSKIP_QT_GUI=TRUE -DSKIP_GTOOL=TRUE -DPLATFORM=$PLATFORM "$MY_PATH/../.." -# make clean > /dev/null || true - make -j $(GetCPUCores) VERBOSE=1 - ) -} - - -SDK_ROOT="$(PrintIOSSDKPath "$CONFIGURATION")" -if [[ $? -ne 0 ]]; then - echo "Is XCode installed? Check tools/autobuild/detect_xcode.sh script" - exit 1 -fi -export SDK_ROOT - -FINAL_PATH_COMPONENT="debug" -SHADOW_DIR="$MY_PATH/../../../omim-iphone-cmake" - -if [[ $CONFIGURATION == *release* ]]; then - BUILD_TYPE="Release" - FINAL_PATH_COMPONENT="release" -elif [[ $CONFIGURATION == *debug* ]]; then - BUILD_TYPE="Debug" - FINAL_PATH_COMPONENT="debug" -else - echo "Unrecognized configuration passed to the script: $CONFIGURATION" - exit 1 -fi - -SHADOW_DIR="${SHADOW_DIR}-${FINAL_PATH_COMPONENT}" - -# Build libs for each architecture in separate folders -for ARCH in $VALID_ARCHS; do - if [[ $# > 1 && "$2" == "clean" ]] ; then - echo "Cleaning $CONFIGURATION configuration..." - rm -rf "$SHADOW_DIR-$ARCH" - else - export BUILD_ARCHITECTURE="$ARCH" - - export CC=clang - export CXX=clang++ - export CMAKE_PREFIX_PATH=$QT_PATH - export PLATFORM=iphone-something - - BuildCmake "$SHADOW_DIR-$ARCH/out/$FINAL_PATH_COMPONENT" "$BUILD_TYPE" || ( echo "ERROR while building $CONFIGURATION config"; exit 1 ) - fi -done diff --git a/tools/autobuild/mac.sh b/tools/autobuild/mac.sh deleted file mode 100644 index 10772e15ac..0000000000 --- a/tools/autobuild/mac.sh +++ /dev/null @@ -1,8 +0,0 @@ -source build.sh - -QMAKE_PATH="/Users/Alex/QtSDK/Desktop/Qt/474/gcc/bin" -SHADOW_DIR="/Developer/omim/omim-mac-release" -MKSPEC="macx-llvm" -QMAKE_PARAMS="CONFIG+=release" - -BuildQt "$QMAKE_PATH" "$SHADOW_DIR" "$MKSPEC" "$QMAKE_PARAMS" || echo "ERROR BUILDING PROJECT" diff --git a/tools/autobuild/send_mail.py b/tools/autobuild/send_mail.py deleted file mode 100644 index 6405b853dc..0000000000 --- a/tools/autobuild/send_mail.py +++ /dev/null @@ -1,33 +0,0 @@ -# Send given file in the body of email -# Call syntax: