File tree Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ workflows:
133
133
- build35
134
134
filters :
135
135
tags :
136
- only : /.*/
136
+ only : /^v .*/
137
137
branches :
138
138
only : master
139
139
- build36 :
@@ -144,7 +144,7 @@ workflows:
144
144
- build36
145
145
filters :
146
146
tags :
147
- only : /.*/
147
+ only : /^v .*/
148
148
branches :
149
149
only : master
150
150
- build37 :
@@ -155,7 +155,7 @@ workflows:
155
155
- build37
156
156
filters :
157
157
tags :
158
- only : /.*/
158
+ only : /^v .*/
159
159
branches :
160
160
only : master
161
161
- pip_deploy :
@@ -165,6 +165,6 @@ workflows:
165
165
- deploy37
166
166
filters :
167
167
tags :
168
- only : /.*/
168
+ only : /^v .*/
169
169
branches :
170
170
only : master
Original file line number Diff line number Diff line change 1
- language : python
1
+ language : rust
2
+ rust :
3
+ - nightly
2
4
os : osx
3
-
4
5
env :
5
6
- PYTHON_VERSION=3.5.6
6
7
- PYTHON_VERSION=3.6.6
7
8
- PYTHON_VERSION=3.7.0
8
9
9
10
cache : cargo
10
11
before_install :
11
- - brew update
12
- - brew install rust pyenv
13
12
- rustup default nightly
13
+ - brew update && brew upgrade pyenv
14
14
- pyenv install $PYTHON_VERSION
15
15
- pyenv global $PYTHON_VERSION
16
+ - pip install --upgrade pip
17
+ - rustup --version; cargo --version;rustc --version;python -V;pip -V;
16
18
17
19
install :
18
- - pip install -r requirements -dev.txt
20
+ - pip install -r requirement -dev.txt --user
19
21
20
22
script : |
21
23
python compile.py build && \
22
24
cp build/lib/py_sourcemap/*.so py_sourcemap/ && \
23
- nosetests
25
+ $HOME/.local/bin/ nosetests
24
26
25
27
deploy :
26
28
provider : releases
You can’t perform that action at this time.
0 commit comments