26 lines
826 B
YAML
26 lines
826 B
YAML
environment:
|
|
OPENSSL_INCLUDE_DIR: C:\OpenSSL\include
|
|
OPENSSL_LIB_DIR: C:\OpenSSL\lib
|
|
OPENSSL_LIBS: ssleay32:libeay32
|
|
matrix:
|
|
- TARGET: i686-pc-windows-gnu
|
|
BITS: 32
|
|
# - TARGET: x86_64-pc-windows-msvc
|
|
# BITS: 64
|
|
install:
|
|
- ps: Start-FileDownload "http://slproweb.com/download/Win${env:BITS}OpenSSL-1_0_2h.exe"
|
|
- Win%BITS%OpenSSL-1_0_2h.exe /SILENT /VERYSILENT /SP- /DIR="C:\OpenSSL"
|
|
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-1.9.0-${env:TARGET}.exe"
|
|
- rust-1.8.0-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
|
|
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
|
|
- SET PATH=%PATH%;C:\MinGW\bin
|
|
- rustc -V
|
|
- cargo -V
|
|
|
|
build: false
|
|
|
|
# Don't run doctests due to rust-lang/cargo#1592
|
|
test_script:
|
|
- cargo test --lib --manifest-path openssl/Cargo.toml
|
|
|