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"