From 4b036fbe5b7ec0654f1743e21a074acf82d84167 Mon Sep 17 00:00:00 2001
From: Anton Bagliy <taccessviolation@gmail.com>
Date: Thu, 28 Jan 2021 19:57:20 +0300
Subject: [PATCH] ADD: use artifacts to pass build results to tests

---
 .gitlab-ci.yml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 302ae04..e6c05e4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -36,7 +36,6 @@ testsimplelexer:
   image: czen/ubuntu_xbuild
   script:
     - ./prebuild.sh
-    - ./build.sh
     - mono packages/NUnit.ConsoleRunner.3.10.0/tools/nunit3-console.exe --labels=ON TestSimpleLexer/bin/Debug/TestSimpleLexer.dll
     - mono NunitReportParser/bin/Debug/NunitReportParser.exe ${TRAVIS_BUILD_DIR} ${TRAVIS_REPO_SLUG}
   tags:
@@ -47,7 +46,6 @@ testlexer:
   image: czen/ubuntu_xbuild
   script:
     - ./prebuild.sh
-    - ./build.sh
     - mono packages/NUnit.ConsoleRunner.3.10.0/tools/nunit3-console.exe --labels=ON TestLexer/bin/Debug/TestLexer.dll
     - mono NunitReportParser/bin/Debug/NunitReportParser.exe ${TRAVIS_BUILD_DIR} ${TRAVIS_REPO_SLUG}
   tags:
@@ -58,7 +56,6 @@ testgeneratedlexer:
   image: czen/ubuntu_xbuild
   script:
     - ./prebuild.sh
-    - ./build.sh
     - mono packages/NUnit.ConsoleRunner.3.10.0/tools/nunit3-console.exe --labels=ON TestGeneratedLexer/bin/Debug/TestGeneratedLexer.dll
     - mono NunitReportParser/bin/Debug/NunitReportParser.exe ${TRAVIS_BUILD_DIR} ${TRAVIS_REPO_SLUG}
   tags:
-- 
GitLab