From 75793f9c12a53251925970f242bd462ac067b64d Mon Sep 17 00:00:00 2001
From: Bo-Chun Chen <louistw@uab.edu>
Date: Wed, 7 Feb 2024 09:07:37 -0600
Subject: [PATCH] Remove DEBUG

[skip ci]
---
 .gitlab-ci.yml | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c9e23e0..0512bfd 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).
-- 
GitLab