summaryrefslogtreecommitdiff
path: root/other/travis/env-linux.sh
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-08-24 23:52:34 +0100
committeriphydf <iphydf@users.noreply.github.com>2016-09-20 13:52:33 +0100
commite59fd26d4987050e474a6de27dd503f32cc7820a (patch)
treeef5349b85395c6355160077ebd6affe717409c81 /other/travis/env-linux.sh
parent51d18236c8effffb14ffe6c5e3f738c1ceb1ae25 (diff)
Add OSX and Windows build to travis config.
Tests for Windows are disabled for now, until we figure out which tests can successfully run on wine and select only those.
Diffstat (limited to 'other/travis/env-linux.sh')
-rw-r--r--other/travis/env-linux.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/other/travis/env-linux.sh b/other/travis/env-linux.sh
index 0eb5e9ea..2544ee56 100644
--- a/other/travis/env-linux.sh
+++ b/other/travis/env-linux.sh
@@ -3,8 +3,11 @@
3CMAKE=cmake 3CMAKE=cmake
4NPROC=`nproc` 4NPROC=`nproc`
5CURDIR=$PWD 5CURDIR=$PWD
6TESTS=true
7 6
8RUN() { 7RUN() {
9 "$@" 8 "$@"
10} 9}
10
11TESTS() {
12 "$@"
13}