Skip to content

Commit

Permalink
Merge pull request #104 from ashleygwilliams/lock-ci
Browse files Browse the repository at this point in the history
feat(tests): pass --locked in CI
  • Loading branch information
ashleygwilliams authored Apr 23, 2018
2 parents 6a08cc1 + 9f9b233 commit c779c74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ install:
build: false

test_script:
- cargo test
- cargo test --locked

before_deploy:
- ps: |
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit c779c74

Please sign in to comment.