From b45cd8665ca990318adeffc06ac5396b209d0592 Mon Sep 17 00:00:00 2001
From: Bing Gong <gongbing1112@gmail.com>
Date: Mon, 16 Mar 2020 11:45:23 +0100
Subject: [PATCH] update gitlab-ci

---
 .gitlab-ci.yml | 41 +++++++++++++++++++++--------------------
 1 file changed, 21 insertions(+), 20 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2c5e5d3b..9332c5d6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,33 +1,34 @@
 stages:
-  - build
-  - test
-  - coverage
-  - deploy
-  - pages
+  - dataset
+  - model
+  - optimizer
+  - train
+  - evaluation
+#  - build
+#  - test
+#  - coverage
+#  - deploy
+#  - pages
 
 
-
-build:
+dataset:
     tags: 
      - linux
-    stage: build
+    stage: dataset
     script: 
-        - echo "Building"
-        - mkdir build
-        - touch build/info.txt
-
+        - echo "dataset testing"
 
-test:
+model:
     tags: 
      - linux
-    stage: test
+    stage: model
     script:
-      - zypper --non-interactive install python3-pip
-      - zypper --non-interactive install python-devel
-      - pip install --upgrade pip
-      - pip install -r requirements.txt
-      - python3 test/test_DataMgr.py
-
+        - echo "model testing"
+#      - zypper --non-interactive install python3-pip
+#      - zypper --non-interactive install python-devel
+#      - pip install --upgrade pip
+#      - pip install -r requirements.txt
+#      - python3 test/test_DataMgr.py
 
 docs:
     tags:
-- 
GitLab