Commit cfc97109 authored by Matthew Brett's avatar Matthew Brett
Browse files

Only run builds for subset of matrix

parent b140e450
# Set TEST_BUILDS=1 to run library_builders tests
language: generic language: generic
matrix: matrix:
include: include:
- os: linux - os: linux
dist: precise
env:
- TEST_BUILDS=1
- os: linux
dist: trusty
env:
- TEST_BUILDS=1
- os: osx - os: osx
osx_image: xcode6.4 osx_image: xcode6.4
env: env:
- PYTHON_VERSION=2.6 - PYTHON_VERSION=2.6
- TEST_BUILDS=1
- os: osx - os: osx
osx_image: xcode6.4 osx_image: xcode6.4
env: env:
...@@ -15,6 +25,7 @@ matrix: ...@@ -15,6 +25,7 @@ matrix:
- os: osx - os: osx
env: env:
- PYTHON_VERSION=2.7.11 - PYTHON_VERSION=2.7.11
- TEST_BUILDS=1
- os: osx - os: osx
language: objective-c language: objective-c
env: env:
......
...@@ -14,7 +14,9 @@ else ...@@ -14,7 +14,9 @@ else
source manylinux_utils.sh source manylinux_utils.sh
source tests/test_manylinux_utils.sh source tests/test_manylinux_utils.sh
fi fi
source tests/test_library_builders.sh if [ -n "$TEST_BUILDS" ]; then
source tests/test_library_builders.sh
fi
# Exit 1 if any test errors # Exit 1 if any test errors
barf barf
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment