File tree 1 file changed +9
-13
lines changed
1 file changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -27,26 +27,22 @@ script:
27
27
- flake8 ssh2
28
28
jobs :
29
29
include :
30
- - os : osx
30
+ - stage : OSX wheel build
31
+ os : osx
31
32
if : tag IS present
32
- branches :
33
- # Hopefully this will work in future.
34
- only :
35
- - master
36
- - /^\d+\.\d+(\.\d+)?(-\S*)?$/
37
33
before_install :
38
34
- brew update
39
35
install :
40
36
- brew install libssh2
41
- - pip install -U delocate twine wheel pip setuptools
42
- - python setup.py bdist_wheel
37
+ - sudo pip2 install -U delocate twine wheel pip setuptools
38
+ - pip2 wheel .
43
39
script :
44
- - delocate-listdeps --all dist/ *.whl
45
- - delocate-wheel -v dist/ *.whl
46
- - delocate-listdeps --all dist/ *.whl
47
- - ls -l dist/
40
+ - delocate-listdeps --all *.whl
41
+ - delocate-wheel -v *.whl
42
+ - delocate-listdeps --all *.whl
43
+ - ls -l *.whl
48
44
- brew uninstall libssh2
49
- - pip install -v dist/ *.whl
45
+ - pip2 install --user -v *.whl
50
46
- pwd; mkdir temp; cd temp; pwd
51
47
- python -c "from ssh2.session import Session; Session()"
52
48
- cd ..; pwd
You can’t perform that action at this time.
0 commit comments