ci: proper naming of scripts

This commit is contained in:
5chdn 2018-10-01 18:32:10 +01:00
parent e915d5d5bd
commit 4da8e25e83
No known key found for this signature in database
GPG Key ID: 1A40871B597F5F80
5 changed files with 12 additions and 12 deletions

View File

@ -47,7 +47,7 @@ test-linux:
variables:
RUN_TESTS: "true"
script:
- scripts/gitlab/test.sh stable
- scripts/gitlab/test-all.sh stable
tags:
- rust-stable
@ -124,7 +124,7 @@ docs-jsonrpc:
cargo-audit:
stage: optional
script:
- scripts/gitlab/audit.sh
- scripts/gitlab/cargo-audit.sh
tags:
- rust-stable
@ -134,7 +134,7 @@ test-android:
variables:
CARGO_TARGET: armv7-linux-androideabi
script:
- scripts/gitlab/test.sh stable
- scripts/gitlab/test-all.sh stable
tags:
- rust-arm
@ -146,7 +146,7 @@ test-darwin:
CXX: g++
RUN_TESTS: "true"
script:
- scripts/gitlab/test.sh stable
- scripts/gitlab/test-all.sh stable
tags:
- rust-osx
@ -156,7 +156,7 @@ test-windows:
CARGO_TARGET: x86_64-pc-windows-msvc
RUN_TESTS: "true"
script:
- sh scripts/gitlab/test.sh stable
- sh scripts/gitlab/test-all.sh stable
tags:
- rust-windows
@ -165,7 +165,7 @@ test-beta:
variables:
RUN_TESTS: "true"
script:
- scripts/gitlab/test.sh beta
- scripts/gitlab/test-all.sh beta
tags:
- rust-beta
@ -174,6 +174,6 @@ test-nightly:
variables:
RUN_TESTS: "true"
script:
- scripts/gitlab/test.sh nightly
- scripts/gitlab/test-all.sh nightly
tags:
- rust-nightly

View File

@ -25,11 +25,11 @@ time cargo build --target $CARGO_TARGET --release -p ethkey-cli
time cargo build --target $CARGO_TARGET --release -p whisper-cli
echo "__________Sign binaries__________"
scripts/gitlab/sign.cmd $keyfile $certpass target/$CARGO_TARGET/release/parity.exe
scripts/gitlab/sign.cmd $keyfile $certpass target/$CARGO_TARGET/release/parity-evm.exe
scripts/gitlab/sign.cmd $keyfile $certpass target/$CARGO_TARGET/release/ethstore.exe
scripts/gitlab/sign.cmd $keyfile $certpass target/$CARGO_TARGET/release/ethkey.exe
scripts/gitlab/sign.cmd $keyfile $certpass target/$CARGO_TARGET/release/whisper.exe
scripts/gitlab/sign-win.cmd $keyfile $certpass target/$CARGO_TARGET/release/parity.exe
scripts/gitlab/sign-win.cmd $keyfile $certpass target/$CARGO_TARGET/release/parity-evm.exe
scripts/gitlab/sign-win.cmd $keyfile $certpass target/$CARGO_TARGET/release/ethstore.exe
scripts/gitlab/sign-win.cmd $keyfile $certpass target/$CARGO_TARGET/release/ethkey.exe
scripts/gitlab/sign-win.cmd $keyfile $certpass target/$CARGO_TARGET/release/whisper.exe
echo "_____ Post-processing binaries _____"
rm -rf artifacts