diff options
| author | Steven Fackler <[email protected]> | 2016-05-08 20:09:39 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-05-08 20:34:00 -0700 |
| commit | e9e9e13da616ac0618e2941d0c71067490d21c68 (patch) | |
| tree | afc4c8cd27fb4d88ee6d13dd3f67cfc637d62147 | |
| parent | Merge pull request #389 from cmsd2/master (diff) | |
| download | rust-openssl-e9e9e13da616ac0618e2941d0c71067490d21c68.tar.xz rust-openssl-e9e9e13da616ac0618e2941d0c71067490d21c68.zip | |
Downgrade bitflags on travis to build on 1.7
| -rw-r--r-- | .travis.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index e73df5f0..8dae13c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ addons: - gcc-arm-linux-gnueabihf rust: - nightly -- 1.8.0 +- 1.7.0 os: - osx - linux @@ -18,11 +18,13 @@ matrix: # include: # - os: linux # env: TARGET=arm-unknown-linux-gnueabihf TEST_FEATURES=true - # rust: 1.8.0 + # 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 |