diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index e0a711ca5d3073245d281f028eeafceb63ccc20c..0000000000000000000000000000000000000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-stages:
-  - build
-  - deploy
-  - cleanup
-
-image: github.com/sinex/docker-latex
-
-variables:
-  LATEX: pdflatex
-
-build:
-  stage: build
-  script: make
-  artifacts:
-    name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
-    when: always
-    expire_in: 30 days
-    paths:
-    - build/
-
-pdf:
-  stage: deploy
-  script: make pdf
-  artifacts:
-    name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
-    paths:
-    - Thesis.pdf
-    - Thesis.tar.gz
-
-cleanup:
-  stage: cleanup
-  script: make clean
-  when: always
\ No newline at end of file