From 01bb5cb7b88d5fb9c21f75e9b40ceff7786cef29 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Fri, 6 Dec 2019 21:46:46 +0000 Subject: [PATCH] Added install git --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 49da0270..3849388b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,6 +7,9 @@ jobs: only: - feature/add_circle-ci_support steps: + - run: + name: Install Git + command: 'apt-get update && apt-get install git' - checkout - run: name: Installing SUDO @@ -17,9 +20,6 @@ jobs: - run: name: Install CMAKE command: 'apt-get update && apt-get install -y cmake' - - run: - name: Install Git - command: 'apt-get update && apt-get install git' - run: name: Creating Build Files command: 'cmake -H. -Bbuild'