From a7385fe58288762b50d45a6286fc21c8288d3889 Mon Sep 17 00:00:00 2001 From: Phuntsok Drak-pa Date: Mon, 16 Apr 2018 02:01:35 +0200 Subject: [PATCH] ughhhhhhhhhhh --- .circleci/config.yml | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 25b8f48..b5d3729 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,21 +8,14 @@ jobs: - CXX: g++-7.1 steps: - checkout - - save_cache: - key: dependency-cache - path: - - "~/cmake-3.11.0-Linux-x86_64" - run: sudo add-apt-repository -y ppa:jonathonf/gcc-7.1 - run: sudo apt-get update - run: sudo apt-get install gcc-7 g++-7 - run: - name: Build project + name: Build cmake command: | - if [ ! -d ~/cmake-3.11.0-Linux-x86_64 ]; then - echo "No cache - building CMake" - cd ~ && wget --quiet https://cmake.org/files/v3.11/cmake-3.11.0-Linux-x86_64.tar.gz && tar -xvf cmake-3.11.0-Linux-x86_64.tar.gz - else - echo "Cached CMake found" - ls -Ahl ~/cmake-3.11.0-Linux-x86_64 - fi - cd build && cmake -DCMAKE_BUILD_TYPE=Debug .. && make -j + cd ~ && wget --quiet https://cmake.org/files/v3.11/cmake-3.11.0-Linux-x86_64.tar.gz + tar -xvf cmake-3.11.0-Linux-x86_64.tar.gz + - run: + name: Build Project + command: cd build && cmake -DCMAKE_BUILD_TYPE=Debug .. && make -j