From e322a14f29455368ef827fa4c211dbfecc8a2c43 Mon Sep 17 00:00:00 2001 From: Paul Woolcock Date: Mon, 29 Apr 2019 09:48:03 -0400 Subject: [PATCH] circle-ci can't build rust projects on their free tier --- .circleci/config.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 4a93a2b..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -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"