multiple jobs
This commit is contained in:
parent
5556a2910c
commit
f2d2996c58
1 changed files with 45 additions and 0 deletions
|
@ -8,10 +8,55 @@ jobs:
|
||||||
- run:
|
- run:
|
||||||
name: build and test
|
name: build and test
|
||||||
command: cargo build && cargo 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:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
build_and_test:
|
build_and_test:
|
||||||
jobs:
|
jobs:
|
||||||
- latest
|
- latest
|
||||||
|
- threefour
|
||||||
|
- threethree
|
||||||
|
- threetwo
|
||||||
|
- threeone
|
||||||
|
- threezero
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue