From cfcd5a8886675d4768ddfc3dcde2ea816dcb40b6 Mon Sep 17 00:00:00 2001 From: "Denis S. Soldatov aka General-Beck" Date: Fri, 12 May 2017 15:39:57 +0300 Subject: [PATCH 1/2] Update .gitlab-ci.yml add bench and test checks from gitlab --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 982d69a1..73f6fde1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -32,6 +32,9 @@ linux-stable: - echo 'Running regtests from ./tools/compare-tool/pull-tests-be0eef7.jar' && echo -en 'cargo_fold:start:regtests' - ./tools/regtests.sh - echo -en 'cargo_fold:end:regtests' + - echo 'Running bench from /benhcer' && echo -en 'gitlab_fold:start:bench' + - ./tools/bench.sh + - echo -en 'gitlab_fold:end:bench' tags: - rust artifacts: From 6ec334728adff52f0ee43f90925b973b0bb5db90 Mon Sep 17 00:00:00 2001 From: "Denis S. Soldatov aka General-Beck" Date: Fri, 12 May 2017 15:58:42 +0300 Subject: [PATCH 2/2] Update .gitlab-ci.yml git submodule update --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 73f6fde1..e91d7fe7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,6 +19,7 @@ linux-stable: - triggers - master script: + - git submodule update --init - echo 'Running tests from /tools/test.sh' && echo -en 'gitlab_fold:start:tests' - ./tools/test.sh - echo -en 'gitlab_fold:end:tests'