mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
Add CI job to test rust nightly
This commit is contained in:
parent
bfa68e8d79
commit
1aebf04781
@ -118,6 +118,28 @@ jobs:
|
||||
- target/release/deps
|
||||
key: v4-cargo-cache-darwin-{{ arch }}-{{ checksum "Cargo.lock" }}
|
||||
|
||||
test-rust-nightly:
|
||||
docker:
|
||||
- image: circleci/rust:latest
|
||||
|
||||
steps:
|
||||
- checkout
|
||||
- restore_cache:
|
||||
keys:
|
||||
- v4-test-cargo-cache-linux-{{ arch }}-{{ checksum "Cargo.lock" }}
|
||||
- run: sudo apt-get install -y cmake
|
||||
- run: rustup default nightly
|
||||
- run: make test
|
||||
- run: rustup component add rustfmt
|
||||
- run: make lint
|
||||
- save_cache:
|
||||
paths:
|
||||
- /usr/local/cargo/registry
|
||||
- target/debug/.fingerprint
|
||||
- target/debug/build
|
||||
- target/debug/deps
|
||||
key: v4-test-cargo-cache-linux-{{ arch }}-{{ checksum "Cargo.lock" }}
|
||||
|
||||
publish-github-release:
|
||||
docker:
|
||||
- image: cibuilds/github
|
||||
@ -160,6 +182,10 @@ workflows:
|
||||
filters:
|
||||
branches:
|
||||
only: master
|
||||
- test-rust-nightly:
|
||||
filters:
|
||||
branches:
|
||||
only: master
|
||||
# :
|
||||
# filters:
|
||||
# tags:
|
||||
|
Loading…
Reference in New Issue
Block a user