Merge pull request #104 from ashleygwilliams/lock-ci

feat(tests): pass --locked in CI
master
ashley williams 7 years ago committed by GitHub
commit c779c74c04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .appveyor.yml
  2. 6
      .travis.yml

@ -8,7 +8,7 @@ install:
build: false
test_script:
- cargo test
- cargo test --locked
before_deploy:
- ps: |

@ -7,7 +7,7 @@ matrix:
# tests pass
- rust: nightly
script:
- cargo test
- cargo test --locked
- rustup component add rustfmt-preview
- cargo fmt -- --write-mode diff
env: RUST_BACKTRACE=1
@ -23,13 +23,13 @@ matrix:
make -j$(nproc) &&
make install)
- export OPENSSL_DIR=$HOME/openssl-musl
script: cargo build --release --target $TARGET
script: cargo build --release --target $TARGET --locked
# dist OSX binary
- os: osx
rust: nightly
env: MACOSX_DEPLOYMENT_TARGET=10.7 DEPLOY=1 TARGET=x86_64-apple-darwin
script: cargo build --release --target $TARGET
script: cargo build --release --target $TARGET --locked
install: true
addons:

Loading…
Cancel
Save