Add pipelines rules to build && test a channel quickly

This commit is contained in:
Florian Dehau 2017-05-25 15:18:24 +02:00
parent c2ad42b509
commit 06a3c9346b

View File

@ -123,3 +123,14 @@ watch-test: ## Watch files changes and run the tests if any
watch-doc: ## Watch file changes and rebuild the documentation if any
watchman-make -p 'src/**/*.rs' -t doc
# ================================= Pipelines =================================
stable: RUST_CHANNEL = stable
stable: build test
beta: RUST_CHANNEL = beta
beta: build test
nightly: RUST_CHANNEL = nightly
nightly: build lint test