File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 2020 # `cache: ccache: true` has no effect if `language:` is not `c` or `cpp`
2121 - $HOME/.ccache
2222
23- language : python
24-
2523# Add more cache stages (s2 etc) and corresponding OSX jobs like s1
2624# if brew builds start to take longer than one Travis time limit
2725stages :
3230 fast_finish : true
3331 # Travis exclude is buggy, this seems to be the only way to disable default build
3432 exclude :
35- - language : python
33+ - language : ruby
3634 include :
3735 - os : osx
3836 env :
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ function bdist_wheel_cmd {
1414 # copied from multibuild's common_utils.sh
1515 # add osx deployment target so it doesnt default to 10.6
1616 local abs_wheelhouse=$1
17- pip wheel . --wheel-dir=" $PWD /dist" --verbose $BDIST_PARAMS
17+ pip wheel --wheel-dir=" $PWD /dist" . --verbose $BDIST_PARAMS
1818 cp dist/* .whl $abs_wheelhouse
1919 if [ -n " $USE_CCACHE " -a -z " $BREW_BOOTSTRAP_MODE " ]; then ccache -s; fi
2020}
@@ -110,6 +110,7 @@ function pre_build {
110110 brew_install_and_cache_within_time_limit ffmpeg_opencv || { [ $? -gt 1 ] && return 2 || return 0; }
111111 else
112112 brew unlink python@2
113+ brew update
113114 brew install ffmpeg_opencv
114115 fi
115116
You can’t perform that action at this time.
0 commit comments