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