Update gitlab-ci

replace stage: test to build
This commit is contained in:
Denis S. Soldatov aka General-Beck 2016-11-01 12:09:21 +07:00 committed by GitHub
parent c553c3c94b
commit 975c01b43a

View File

@ -1,6 +1,5 @@
stages: stages:
- build - build
- test
variables: variables:
GIT_DEPTH: "3" GIT_DEPTH: "3"
SIMPLECOV: "true" SIMPLECOV: "true"
@ -369,8 +368,7 @@ test-windows:
- git submodule update --init --recursive - git submodule update --init --recursive
script: script:
- set RUST_BACKTRACE=1 - set RUST_BACKTRACE=1
- set TARGETS=%-p rlp -p ethash -p ethcore -p ethcore-bigint -p ethcore-dapps -p ethcore-rpc -p ethcore-signer -p ethcore-util -p ethcore-network -p ethcore-io -p ethkey -p ethstore -p ethsync -p ethcore-ipc -p ethcore-ipc-tests -p ethcore-ipc-nano -p parity% - cargo test --features json-tests -p rlp -p ethash -p ethcore -p ethcore-bigint -p ethcore-dapps -p ethcore-rpc -p ethcore-signer -p ethcore-util -p ethcore-network -p ethcore-io -p ethkey -p ethstore -p ethsync -p ethcore-ipc -p ethcore-ipc-tests -p ethcore-ipc-nano -p parity %CARGOFLAGS% --verbose --release
- cargo test --features json-tests %TARGETS% %CARGOFLAGS% --verbose --release
tags: tags:
- rust-windows - rust-windows
test-linux: test-linux:
@ -395,7 +393,7 @@ js-release:
tags: tags:
- javascript - javascript
js-lint: js-lint:
stage: test stage: build
image: ethcore/javascript:latest image: ethcore/javascript:latest
before_script: before_script:
- ./js/scripts/install-deps.sh - ./js/scripts/install-deps.sh
@ -404,7 +402,7 @@ js-lint:
tags: tags:
- javascript-test - javascript-test
js-test: js-test:
stage: test stage: build
image: ethcore/javascript:latest image: ethcore/javascript:latest
before_script: before_script:
- ./js/scripts/install-deps.sh - ./js/scripts/install-deps.sh
@ -413,7 +411,7 @@ js-test:
tags: tags:
- javascript-test - javascript-test
js-pack: js-pack:
stage: test stage: build
image: ethcore/javascript:latest image: ethcore/javascript:latest
before_script: before_script:
- ./js/scripts/install-deps.sh - ./js/scripts/install-deps.sh