Commit 2a22a33b authored by Rob Buckley's avatar Rob Buckley
Browse files

missing default caused osx TEST_BUILD=1 cases to fail

parent 8a05b2e6
......@@ -53,6 +53,7 @@ matrix:
env:
- PYTHON_VERSION=2.7
- MB_PYTHON_OSX_VER=10.9
- TEST_BUILDS=1
- os: osx
env:
- PYTHON_VERSION=3.4
......@@ -128,11 +129,13 @@ matrix:
osx_image: xcode10.1
env:
- PYTHON_VERSION=3.7
- TEST_BUILDS=1
- os: osx
osx_image: xcode10.1
env:
- PYTHON_VERSION=3.7
- MB_PYTHON_OSX_VER=10.9
- TEST_BUILDS=1
- os: osx
osx_image: xcode10
env:
......
......@@ -138,9 +138,11 @@ function mac_arch_for_pyosx_version {
# echo arch (intel or x86_64) that cpython builds targetted for the
# given minimum macOS are targetted for
# Parameters
# $py_osx_ver (major.minor} the macosx version that python is built
# for, e.g. "10.6" or "10.9"
py_osx_ver=$1
# $py_osx_ver (major.minor | not defined}
# if defined, the macosx version that python is built for, e.g.
# "10.6" or "10.9", if not defined, uses the default
# MACPYTHON_DEFAULT_OSX
py_osx_ver=${1:-$MACPYTHON_DEFAULT_OSX}
check_var $py_osx_ver
if [ $py_osx_ver -eq "10.6" ]; then
echo "intel"
......
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