circle-ci can't build rust projects on their free tier

master
Paul Woolcock 5 years ago
parent ff3a7321df
commit e322a14f29
  1. 24
      .circleci/config.yml

@ -1,24 +0,0 @@
version: 2
jobs:
build:
docker:
- image: circleci/rust:latest
steps:
- checkout
- restore_cache:
key: project-cache
- run:
name: Stable Build
command: |
cargo --version --verbose
cargo build -j 1
- run:
name: Stable Test (lib)
command: cargo test -j 1 --lib
- run:
name: Stable Test (doc)
command: cargo test -j 1 --doc
- save_cache:
key: project-cache
paths:
- "~/.cargo"
Loading…
Cancel
Save