From 06e29bd86142d4b8569478904644925e8e78282f Mon Sep 17 00:00:00 2001 From: Louis Capitanchik <contact@louiscap.co> Date: Thu, 13 Sep 2018 15:33:12 +0100 Subject: [PATCH] Remove circle config --- .circleci/config.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index a1907fe..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,20 +0,0 @@ -version: 2 - -jobs: - build: - docker: - # The image used to build our project, build - # your own using the Dockerfile provided below - # and replace here. I put my own image here for - # the example. - - image: abronan/rust-circleci:latest - steps: - - checkout - - run: rustup update - - restore_cache: - key: cargo-cache - - run: rustup run nightly cargo build - - save_cache: - key: cargo-cache - paths: - - "~/.cargo" \ No newline at end of file -- GitLab