From cf45642efeea72020f153f00105447fb66c4fa69 Mon Sep 17 00:00:00 2001 From: Apichat Khankaew <57880316+Apichat11oat@users.noreply.github.com> Date: Thu, 19 Mar 2020 02:19:32 +1100 Subject: [PATCH] =?UTF-8?q?=E0=B8=81=E0=B8=B9=E0=B9=80=E0=B8=AD=E0=B8=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit โอ๊ต --- .circleci/config.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index f2ec93062..000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,30 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: debian:stretch - - steps: - - checkout - - - run: - name: Install sudo - command: 'apt-get update && apt-get install -y sudo && rm -rf /var/lib/apt/lists/*' - - run: - name: Install GCC - command: 'apt-get update && apt-get install -y gcc g++' - - run: - name: Install CMake - command: 'apt-get update && sudo apt-get install -y cmake' - - run: - name: Create build files - command: 'mkdir build ; cd build ; cmake ..' - - run: - name: Versions - command: 'g++ --version ; uname -a' - - run: - name: Compile - command: 'cmake --build build' - - run: - name: Execute test suite - command: 'cd build ; ctest -j 2'