From 83168f7806cd83dc3cb1c65d421224fb5f12201b Mon Sep 17 00:00:00 2001
From: "Allen, Bruce (CIV)" <bdallen@nps.edu>
Date: Fri, 2 Oct 2020 19:10:48 -0700
Subject: [PATCH] Update .gitlab-ci.yml

---
 .gitlab-ci.yml | 26 ++++++++++++--------------
 1 file changed, 12 insertions(+), 14 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ea9b0ce..8e92d35 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,22 +1,20 @@
 stages:
   - build
-  - test
+#  - test
 
-job 0:
-  - stage: .pre
-  - script:
+build:
+  stage: build
+  before_script:
+    - echo "zzzzzz"
     - apt-get libc6-dev-i386
     - apt-get csh
     - python3 -m pip install PyQt5
+  script:
     - cd python; make rc
+  after_script:
+    - cd python; make check
 
-job 1:
-  - stage: build
-  - script:
-    - cd python; make rc
-
-job 2:
-  - stage: test
-    - script:
-      - cd python; make check
-
+#test:
+#  - stage: test
+#  - script:
+#    - cd python; make check
-- 
GitLab