blob: 8dae13c4632937c0c8e649a649cf57c684dcd92f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
language: rust
sudo: false
addons:
apt:
packages:
- gcc-arm-linux-gnueabihf
rust:
- nightly
- 1.7.0
os:
- osx
- linux
env:
matrix:
- TEST_FEATURES=false
- TEST_FEATURES=true
matrix:
# include:
# - os: linux
# env: TARGET=arm-unknown-linux-gnueabihf TEST_FEATURES=true
# rust: 1.7.0
exclude:
- os: osx
env: TEST_FEATURES=true
before_install:
- ./openssl/test/build.sh
script:
- cargo fetch --manifest-path openssl/Cargo.toml # generate a cargo.lock
- cargo update --manifest-path openssl/Cargo.toml -p bitflags --precise 0.5.0
- ./openssl/test/run.sh
|