summaryrefslogtreecommitdiff
path: root/platform/osx/scripts/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'platform/osx/scripts/run.sh')
-rwxr-xr-xplatform/osx/scripts/run.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/platform/osx/scripts/run.sh b/platform/osx/scripts/run.sh
deleted file mode 100755
index 6d00d1b977..0000000000
--- a/platform/osx/scripts/run.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-set -o pipefail
-
-source ./platform/osx/scripts/setup.sh
-
-BUILDTYPE=${BUILDTYPE:-Release}
-
-################################################################################
-# Build
-################################################################################
-
-mapbox_time "compile_render_binary" \
-make render -j${JOBS} BUILDTYPE=${BUILDTYPE}
-
-mapbox_time "compile_offline_binary" \
-make offline -j${JOBS} BUILDTYPE=${BUILDTYPE}
-
-mapbox_time "compile_tests" \
-make xtest -j${JOBS} BUILDTYPE=${BUILDTYPE}