From bb26ae9b9f8be3876b2c237033f207f0183b98b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Thu, 18 Oct 2018 15:07:47 +0200 Subject: [PATCH] Removed CI file. --- .gitlab-ci.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 964004a..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,20 +0,0 @@ -image: gcc - -build: - stage: build - # Install dependencies - before_script: - - apt update && apt -y install cmake libgmp-dev libgomp1 - # Build the project - script: - - cd build/ - - cmake -DCMAKE_BUILD_TYPE=Release .. - - make - # Find the resulting binary - artifacts: - paths: - - build/indivisible - # Cache .o files for faster compiling - cache: - paths: - - "build/CMakeFiles/indivisible.dir/src/*.o"