From 18871b0d136f57118bb4919e43f205b218f66465 Mon Sep 17 00:00:00 2001 From: Phuntsok Drak-pa Date: Mon, 16 Apr 2018 03:51:19 +0200 Subject: [PATCH] no CircleCI for now --- .circleci/config.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index cee450e..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,25 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: gcc:latest -# - image: madduci/docker-ubuntu-cpp:gcc-6 -# - image: buildpack-deps:trusty - environment: - - PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin - steps: - - checkout - - run: gcc --version - - run: cmake --version -# - run: sudo apt-get install software-properties-common python-software-properties -# - 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 cmake - command: | - 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