From 227fdb7d772b70dd7c9c98cc2198d061f7882586 Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Wed, 18 Oct 2017 09:24:36 +0200 Subject: [PATCH] Temporarily eemove stale Travis build script Revert and refine later. --- .travis.yml | 8 -------- travis-build.sh | 40 ---------------------------------------- 2 files changed, 48 deletions(-) delete mode 100644 .travis.yml delete mode 100755 travis-build.sh diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 28720e7..0000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -osx_image: xcode8.3 -language: objective-c -before_install: - - ./travis-build.sh - -script: - - xcodebuild -project OpenSSL-for-iOS.xcodeproj -scheme OpenSSL-for-iOS -sdk iphonesimulator clean build - - cd targets && xcodebuild -project OpenSSL-for-iOS.xcodeproj -scheme OpenSSL-for-iOS -sdk iphonesimulator clean build diff --git a/travis-build.sh b/travis-build.sh deleted file mode 100755 index b420886..0000000 --- a/travis-build.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh - -# Log script output with prefix -log_output() -{ - while read INPUT; do - echo "${1} ${INPUT}" - done -} - -# Shut up curl -export CURL_OPTIONS="-s" - -# Build 1.0.2 in current directory -./build-libssl.sh --noparallel --verbose-on-error | log_output "ARCHS " & -PID_ARCHS=$! - -# Build 1.1.0 in (temporary) subdirectory -mkdir targets -cd targets -cp -r ../include . -../build-libssl.sh --noparallel --verbose-on-error --ec-nistp-64-gcc-128 --version=1.1.0f | log_output "TARGETS" & -PID_TARGETS=$! - -echo "SCRIPT Started jobs, waiting for jobs to finish" -wait ${PID_ARCHS} -wait ${PID_TARGETS} - -# Verify/prepare 1.1.0 build dir -xcrun -sdk iphoneos lipo -info ./lib/*.a | log_output "TARGETS" -../create-openssl-framework.sh | log_output "TARGETS" -xcrun -sdk iphoneos lipo -info frameworks/iPhone/openssl.framework/openssl | log_output "TARGETS" -cp -r ../OpenSSL-for-* . - -# Back to main dir -cd .. -xcrun -sdk iphoneos lipo -info ./lib/*.a | log_output "ARCHS " -./create-openssl-framework.sh | log_output "ARCHS " -xcrun -sdk iphoneos lipo -info frameworks/iPhone/openssl.framework/openssl | log_output "ARCHS " -