[CI]: No need to use travis wait since we already skip the DRC checks.
diff --git a/.travis.yml b/.travis.yml
index 86caa26..2083d54 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -35,4 +35,4 @@
   - sh .travisCI/travisBuild.sh
 
 script:
-  - travis_wait 70 bash .travisCI/runPrecheck.sh
+  - bash .travisCI/runPrecheck.sh
diff --git a/.travisCI/runPrecheck.sh b/.travisCI/runPrecheck.sh
index ecf94de..786b8b6 100644
--- a/.travisCI/runPrecheck.sh
+++ b/.travisCI/runPrecheck.sh
@@ -17,6 +17,12 @@
 docker run -v $(pwd):/usr/local/bin -v $TARGET_PATH:$TARGET_PATH -u $(id -u $USER):$(id -g $USER) open_mpw_prechecker:latest bash -c "python3 open_mpw_prechecker.py --skip_drc -t $TARGET_PATH"
 output=$TARGET_PATH/checks/full_log.log
 
+gzipped_file=$TARGET_PATH/checks/full_log.log.gz
+
+if [[ -f $gzipped_file ]]; then
+    gzip -d $gzipped_file
+fi
+
 cnt=$(grep -c -i "All Checks PASSED" $output)
 if ! [[ $cnt ]]; then cnt=0; fi