From 08e620de564c176751e69a5d0cf8465d52eedd13 Mon Sep 17 00:00:00 2001 From: Christopher Baker Date: Sat, 6 Jan 2018 21:48:30 -0600 Subject: [PATCH] Force OSX build. --- scripts/ci/addons/build.sh | 4 ++++ scripts/ci/addons/install.sh | 2 ++ 2 files changed, 6 insertions(+) diff --git a/scripts/ci/addons/build.sh b/scripts/ci/addons/build.sh index a2491fc69bc..f63df4d142a 100755 --- a/scripts/ci/addons/build.sh +++ b/scripts/ci/addons/build.sh @@ -79,6 +79,10 @@ if ls example* 1> /dev/null 2>&1; then elif [ "$TARGET" == "linuxarmv7l" ]; then #make DebugNoOF PLATFORM_VARIANT=raspberry2 junest ./build_junest.sh $(cd $example; pwd -P) + elif [ "$TARGET" == "osx" ]; then + cd $example + make Debug + cd .. else cd $example make DebugNoOF diff --git a/scripts/ci/addons/install.sh b/scripts/ci/addons/install.sh index 9974101c7c6..59a757bf0e7 100755 --- a/scripts/ci/addons/install.sh +++ b/scripts/ci/addons/install.sh @@ -51,6 +51,8 @@ if [ "$TARGET" == "android" ]; then cd ..; elif [ "$TARGET" == "emscripten" ]; then wget http://ci.openframeworks.cc/openFrameworks_libs/$TARGET/libopenFrameworksDebug.bc; +elif [ "$TARGET" == "osx" ]; then + echo "Skipping download for osx." else wget http://ci.openframeworks.cc/openFrameworks_libs/$TARGET/libopenFrameworksDebug.a; fi