From 253c9b0171f38877ef6d62d8afa9f7dcb55bcc4a Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Tue, 12 May 2020 18:21:03 +0100 Subject: [PATCH] Attempt at getting CircleCI to work --- .circleci/config.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 466ea856..09097d01 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,24 +7,16 @@ jobs: only: - feature/add_circle-ci_support steps: - - run: - name: Git Init - command: 'git init' - - run: - name: Git Clone - command: 'git clone https://github.com/ETLCPP/etl.git' + - checkout: - run: name: Listing0 command: 'ls' - - run: - name: Git Fetch - command: 'git fetch' - run: name: Git Checkout command: 'git checkout --track origin/feature/add_circle-ci_support' - run: name: Creating Build Files - command: 'cmake -Bbuild etlcpp/test/' + command: 'cmake -Bbuild etl/test/' - run: name: Creating Binary Files command: 'cmake --build build'