File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 3
3
- nightly
4
4
os : osx
5
5
env :
6
- - PYTHON_VERSION=3.5.6
7
- - PYTHON_VERSION=3.6.6
8
- - PYTHON_VERSION=3.7.0
6
+ - PYTHON_VERSION=3.5.6 PYTHON_NATIVE_ABI=35
7
+ - PYTHON_VERSION=3.6.6 PYTHON_NATIVE_ABI=36
8
+ - PYTHON_VERSION=3.7.0 PYTHON_NATIVE_ABI=37
9
9
10
10
cache : cargo
11
11
before_install :
@@ -23,13 +23,16 @@ install:
23
23
script : |
24
24
python compile.py build && \
25
25
cp build/lib/py_sourcemap/*.so py_sourcemap/py_sourcemap.so && \
26
+ mkdir -p natives && \
27
+ cp py_sourcemap/py_sourcemap.so "natives/py_sourcemap.cpython-m${PYTHON_NATIVE_ABI}-x86_64-apple-darwin.so" && \
26
28
$HOME/.local/bin/nosetests
27
29
28
30
deploy :
29
31
provider : releases
30
32
api_key :
31
33
secure : $GITHUB_TOKEN
32
- file : py_sourcemap/py_sourcemap.so
34
+ file_glob : true
35
+ file : natives/*.so
33
36
skip_cleanup : true
34
37
on :
35
38
tags : true
You can’t perform that action at this time.
0 commit comments