From 7b945fcda475618616374ffae67c4f870d6bbf66 Mon Sep 17 00:00:00 2001 From: "Denis S. Soldatov aka General-Beck" Date: Fri, 26 Aug 2016 22:07:05 +0700 Subject: [PATCH] Update gitlab-ci add test stage --- .gitlab-ci.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e950996ac..20e31d44c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,6 @@ stages: - build + - test - deploy variables: GIT_DEPTH: "3" @@ -19,6 +20,7 @@ linux-beta: script: - cargo build --release --verbose - strip target/release/parity + - cp target/release/parity parity tags: - rust - rust-beta @@ -26,6 +28,12 @@ linux-beta: paths: - target/release/parity name: "${CI_BUILD_NAME}_parity" + stage: deploy + tags: + - rust + - rust-beta + script: + - ./deploy.sh linux-stable: stage: build image: ethcore/rust:stable @@ -92,6 +100,11 @@ linux-armv7: - tags - stable script: + - rm -rf .cargo + - mkdir -p .cargo + - echo "[target.armv7-unknown-linux-gnueabihf]" >> .cargo/config + - echo "linker= \"arm-linux-gnueabihf-gcc\"" >> .cargo/config + - cat .cargo/config - cargo build --target armv7-unknown-linux-gnueabihf --release --verbose - arm-linux-gnueabihf-strip target/armv7-unknown-linux-gnueabihf/release/parity tags: @@ -110,6 +123,11 @@ linux-arm: - tags - stable script: + - rm -rf .cargo + - mkdir -p .cargo + - echo "[target.arm-unknown-linux-gnueabihf]" >> .cargo/config + - echo "linker= \"arm-linux-gnueabihf-gcc\"" >> .cargo/config + - cat .cargo/config - cargo build --target arm-unknown-linux-gnueabihf --release --verbose - arm-linux-gnueabihf-strip target/arm-unknown-linux-gnueabihf/release/parity tags: @@ -129,6 +147,11 @@ linux-armv6: - tags - stable script: + - rm -rf .cargo + - mkdir -p .cargo + - echo "[target.arm-unknown-linux-gnueabi]" >> .cargo/config + - echo "linker= \"arm-linux-gnueabi-gcc\"" >> .cargo/config + - cat .cargo/config - cargo build --target arm-unknown-linux-gnueabi --release --verbose - arm-linux-gnueabi-strip target/arm-unknown-linux-gnueabi/release/parity tags: @@ -148,6 +171,11 @@ linux-aarch64: - tags - stable script: + - rm -rf .cargo + - mkdir -p .cargo + - echo "[target.aarch64-unknown-linux-gnu]" >> .cargo/config + - echo "linker= \"aarch64-linux-gnu-gcc\"" >> .cargo/config + - cat .cargo/config - cargo build --target aarch64-unknown-linux-gnu --release --verbose - aarch64-linux-gnu-strip target/aarch64-unknown-linux-gnu/release/parity tags: @@ -193,3 +221,11 @@ windows: - target/release/parity.exe - target/release/parity.pdb name: "${CI_BUILD_NAME}_parity" +test-linux: + stage: test + before_script: + - git submodule update --init --recursive + script: + - ./test.sh --verbose + dependencies: + - linux-stable