diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c9e23e012d0a2ca37ffb3b525f41520661b92208..0512bfd58183deeed46d1eef22360c2fa3b0a1cd 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -27,20 +27,14 @@ build-job:       # This job runs in the build stage, which runs first.
   tags:
     - build
   script:
-    - |
-      if [ "$DEBUG" = true ]; then
-        set -x
-      fi
+
     - echo "Compiling the code..."
     - echo "Compile complete."
     - |
       echo line1
       echo line2
       echo line3
-    - |
-      if [ "$DEBUG" = true ]; then
-        set +x
-      fi
+
 
 lint-test-job:   # This job also runs in the test stage.
   stage: test    # It can run at the same time as unit-test-job (in parallel).