diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5625241a6de180f8c5c49d0d9172446dc30cc6d2..00d3e8cb6517afc5ba03f28f6b3dedb3c214f064 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,23 +9,23 @@ variables:
   LSAN_OPTIONS: "log_threads=1"
   ASAN_OPTIONS: "detect_leaks=0:detect_stack_use_after_return=1"
 
-build:
-  stage: build
-  tags:
-    - corsika
-  script:
-    - mkdir build
-    - cd build
-    - cmake .. -DCMAKE_BUILD_TYPE=Debug
-    - cmake --build . -- -j4
-    - ctest -j4 -V >& test.log || gzip -v -9 -S .gz test.log
-  artifacts:
-    expire_in: 1 year
-    paths:
-      - build/test.log.gz
-    reports:
-      junit:
-        - build/test_outputs/junit*.xml
+# build:
+#   stage: build
+#   tags:
+#     - corsika
+#   script:
+#     - mkdir build
+#     - cd build
+#     - cmake .. -DCMAKE_BUILD_TYPE=Debug
+#     - cmake --build . -- -j4
+#     - ctest -j4 -V >& test.log || gzip -v -9 -S .gz test.log
+#   artifacts:
+#     expire_in: 1 year
+#     paths:
+#       - build/test.log.gz
+#     reports:
+#       junit:
+#         - build/test_outputs/junit*.xml
 
 coverage:
   stage: build