From 5f64d50653c911e7f760bb733c959fc6e888f929 Mon Sep 17 00:00:00 2001 From: juliangaal Date: Fri, 7 Jun 2019 10:47:57 +0200 Subject: [PATCH 1/3] test versions 1.30.0-latest --- .circleci/config.yml | 53 ++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 51 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 418445d..936a098 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,6 @@ version: 2 jobs: - build: + latest: docker: - image: circleci/rust:latest steps: @@ -8,6 +8,55 @@ jobs: - run: name: build and test command: cargo build && cargo test + 1_34_0: + docker: + - image: circleci/rust:1.34.0 + steps: + - checkout + - run: + name: build and test + command: cargo build && cargo test + 1_33_0: + docker: + - image: circleci/rust:1.33.0 + steps: + - checkout + - run: + name: build and test + command: cargo build && cargo test + 1_32_0: + docker: + - image: circleci/rust:1.33.0 + steps: + - checkout + - run: + name: build and test + command: cargo build && cargo test + 1_31_0: + docker: + - image: circleci/rust:1.33.0 + steps: + - checkout + - run: + name: build and test + command: cargo build && cargo test + 1_30_0: + docker: + - image: circleci/rust:1.33.0 + steps: + - checkout + - run: + name: build and test + command: cargo build && cargo test - +workflows: + version: 2 + build_and_test: + jobs: + - latest + - 1_34_0 + - 1_33_0 + - 1_32_0 + - 1_31_0 + - 1_30_0 From 5556a2910cdb50e8fa3f20411f1e8b7d239d903d Mon Sep 17 00:00:00 2001 From: juliangaal Date: Fri, 7 Jun 2019 10:52:04 +0200 Subject: [PATCH 2/3] disable 1_30_0 --- .circleci/config.yml | 45 -------------------------------------------- 1 file changed, 45 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 936a098..ce4da13 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,55 +8,10 @@ jobs: - run: name: build and test command: cargo build && cargo test - 1_34_0: - docker: - - image: circleci/rust:1.34.0 - steps: - - checkout - - run: - name: build and test - command: cargo build && cargo test - 1_33_0: - docker: - - image: circleci/rust:1.33.0 - steps: - - checkout - - run: - name: build and test - command: cargo build && cargo test - 1_32_0: - docker: - - image: circleci/rust:1.33.0 - steps: - - checkout - - run: - name: build and test - command: cargo build && cargo test - 1_31_0: - docker: - - image: circleci/rust:1.33.0 - steps: - - checkout - - run: - name: build and test - command: cargo build && cargo test - 1_30_0: - docker: - - image: circleci/rust:1.33.0 - steps: - - checkout - - run: - name: build and test - command: cargo build && cargo test workflows: version: 2 build_and_test: jobs: - latest - - 1_34_0 - - 1_33_0 - - 1_32_0 - - 1_31_0 - - 1_30_0 From f2d2996c587ccd026ac00591b114588fca055dea Mon Sep 17 00:00:00 2001 From: juliangaal Date: Fri, 7 Jun 2019 10:54:04 +0200 Subject: [PATCH 3/3] multiple jobs --- .circleci/config.yml | 45 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index ce4da13..347afdf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,10 +8,55 @@ jobs: - run: name: build and test command: cargo build && cargo test + threefour: + docker: + - image: circleci/rust:1.34.0 + steps: + - checkout + - run: + name: build and test + command: cargo build && cargo test + threethree: + docker: + - image: circleci/rust:1.33.0 + steps: + - checkout + - run: + name: build and test + command: cargo build && cargo test + threetwo: + docker: + - image: circleci/rust:1.33.0 + steps: + - checkout + - run: + name: build and test + command: cargo build && cargo test + threeone: + docker: + - image: circleci/rust:1.33.0 + steps: + - checkout + - run: + name: build and test + command: cargo build && cargo test + threezero: + docker: + - image: circleci/rust:1.33.0 + steps: + - checkout + - run: + name: build and test + command: cargo build && cargo test workflows: version: 2 build_and_test: jobs: - latest + - threefour + - threethree + - threetwo + - threeone + - threezero