From e12f93f2c1d547394fda3cfd02dc76e46f75fe70 Mon Sep 17 00:00:00 2001 From: juliangaal Date: Mon, 15 Feb 2021 18:57:41 +0100 Subject: [PATCH] add versions since 1.40 --- .circleci/config.yml | 45 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index f226132..88f50c9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -48,6 +48,46 @@ jobs: - run: name: build and test command: cargo build + fourfour: + docker: + - image: circleci/rust:1.44.0 + steps: + - checkout + - run: + name: build and test + command: cargo build + fourthree: + docker: + - image: circleci/rust:1.43.0 + steps: + - checkout + - run: + name: build and test + command: cargo build + fourtwo: + docker: + - image: circleci/rust:1.42.0 + steps: + - checkout + - run: + name: build and test + command: cargo build + fourone: + docker: + - image: circleci/rust:1.40.0 + steps: + - checkout + - run: + name: build and test + command: cargo build + fourzero: + docker: + - image: circleci/rust:1.40.0 + steps: + - checkout + - run: + name: build and test + command: cargo build workflows: version: 2 @@ -59,4 +99,9 @@ workflows: - fourseven - foursix - fourfive + - fourfour + - fourthree + - fourtwo + - fourone + - fourzero