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