From 06a3c9346bfec85a09984cb94be862774edf2ad3 Mon Sep 17 00:00:00 2001 From: Florian Dehau Date: Thu, 25 May 2017 15:18:24 +0200 Subject: [PATCH] Add pipelines rules to build && test a channel quickly --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Makefile b/Makefile index 7082446d..56660a28 100644 --- a/Makefile +++ b/Makefile @@ -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