From 1094dfbe6bd62c3fec7d4626a52b8fbe1f9ff9a6 Mon Sep 17 00:00:00 2001 From: "Denis S. Soldatov aka General-Beck" Date: Fri, 28 Oct 2016 23:04:00 +0700 Subject: [PATCH] Update gitlab-ci add darwin and windows tests --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3d822a9d5..e16350325 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -364,6 +364,28 @@ test-linux: - rust-test dependencies: - linux-stable +test-darwin: + stage: test + before_script: + - git submodule update --init --recursive + script: + - export RUST_BACKTRACE=1 + - ./test.sh --verbose + tags: + - osx + dependencies: + - darwin +test-windows: + stage: test + before_script: + - git submodule update --init --recursive + script: + - export RUST_BACKTRACE=1 + - ./test.sh --verbose + tags: + - rust-windows + dependencies: + - windows js-release: stage: build image: ethcore/javascript:latest