From 4ea71d96f08e12226e0c83b6495fadfbc7ffe7ee Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Wed, 27 Dec 2017 19:20:19 -0800 Subject: [PATCH] Remove last traces of Travis CI support. --- .travis.yml | 5 ----- Scripts/build.sh | 18 +----------------- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 4288fb3e7..000000000 --- a/.travis.yml +++ /dev/null @@ -1,5 +0,0 @@ -os: osx -osx_image: xcode9.2 -language: objective-c -script: - - Scripts/build.sh -n diff --git a/Scripts/build.sh b/Scripts/build.sh index 662f44edf..fea0265c0 100755 --- a/Scripts/build.sh +++ b/Scripts/build.sh @@ -4,23 +4,7 @@ pushd $(dirname $0) BASE=`pwd -P` popd -sign=true - -while getopts ":hn" option; do - case $option in - h) echo "usage: $0 [-h] [-n]"; exit ;; - n) sign=false ;; - ?) echo "error: option -$OPTARG is not implemented"; exit ;; - esac -done - -SIGNARGS="" - -if [ "$sign" = true ] ; then - SIGNARGS=('CODE_SIGN_IDENTITY=""' 'CODE_SIGNING_REQUIRED=NO') -fi - BUILDPRODUCTS="$BASE"/build/Build/Products/Release -xcodebuild -quiet -workspace "$BASE"/../Cog.xcodeproj/project.xcworkspace -scheme Cog -configuration Release -derivedDataPath "$BASE"/build ${SIGNARGS[*]} +xcodebuild -quiet -workspace "$BASE"/../Cog.xcodeproj/project.xcworkspace -scheme Cog -configuration Release -derivedDataPath "$BASE"/build