107 lines
2 KiB
YAML
107 lines
2 KiB
YAML
version: 2
|
|
jobs:
|
|
latest:
|
|
docker:
|
|
- image: cimg/rust:latest
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build
|
|
fournine:
|
|
docker:
|
|
- image: cimg/rust:1.49.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build
|
|
foureight:
|
|
docker:
|
|
- image: cimg/rust:1.48.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build
|
|
fourseven:
|
|
docker:
|
|
- image: cimg/rust:1.47.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build
|
|
foursix:
|
|
docker:
|
|
- image: cimg/rust:1.46.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build
|
|
fourfive:
|
|
docker:
|
|
- image: cimg/rust:1.45.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build
|
|
fourfour:
|
|
docker:
|
|
- image: cimg/rust:1.44.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build
|
|
fourthree:
|
|
docker:
|
|
- image: cimg/rust:1.43.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build
|
|
fourtwo:
|
|
docker:
|
|
- image: cimg/rust:1.42.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build
|
|
fourone:
|
|
docker:
|
|
- image: cimg/rust:1.40.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build
|
|
fourzero:
|
|
docker:
|
|
- image: cimg/rust:1.40.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build
|
|
|
|
workflows:
|
|
version: 2
|
|
build_and_test:
|
|
jobs:
|
|
- latest
|
|
- fournine
|
|
- foureight
|
|
- fourseven
|
|
- foursix
|
|
- fourfive
|
|
- fourfour
|
|
- fourthree
|
|
- fourtwo
|
|
- fourone
|
|
- fourzero
|
|
|