File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 1
1
rust-numpy
2
2
===========
3
3
[ ![ Build Status] ( https://travis-ci.org/rust-numpy/rust-numpy.svg?branch=master )] ( https://travis-ci.org/rust-numpy/rust-numpy )
4
+ [ ![ Build status] ( https://ci.appveyor.com/api/projects/status/fbvref80965w64fu/branch/master?svg=true )] ( https://ci.appveyor.com/project/kngwyu/rust-numpy/branch/master )
4
5
[ ![ Crate] ( http://meritbadge.herokuapp.com/numpy )] ( https://crates.io/crates/numpy )
5
6
[ ![ docs.rs] ( https://docs.rs/numpy/badge.svg )] ( https://docs.rs/numpy )
6
7
Original file line number Diff line number Diff line change
1
+ environment :
2
+ TARGET : x86_64-pc-windows-msvc
3
+ matrix :
4
+ - PYTHON : " C:/Python35-x64"
5
+ - PYTHON : " C:/Python36-x64"
6
+
7
+ install :
8
+ - " SET PATH=%PYTHON%;%PYTHON%\\ Scripts;%PATH%"
9
+ - " python --version"
10
+ - ps : Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.msi"
11
+ - start /wait msiexec /i rust-nightly-%TARGET%.msi INSTALLDIR="%CD%\rust-nightly-%TARGET%" /quiet /qn /norestart
12
+ - call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64
13
+ - set PATH=%PATH%;%CD%/rust-nightly-%TARGET%/bin
14
+ - rustc -V
15
+ - cargo -V
16
+ - set RUST_BACKTRACE=1
17
+
18
+ build_script :
19
+ - cargo build --verbose
20
+
21
+ test_script :
22
+ - cargo test --verbose
23
+ - pip install setuptools-rust
24
+ - cd example
25
+ - python setup.py install
26
+ - python setup.py test
You can’t perform that action at this time.
0 commit comments