ci: proper naming of scripts
This commit is contained in:
parent
e915d5d5bd
commit
4da8e25e83
@ -47,7 +47,7 @@ test-linux:
|
|||||||
variables:
|
variables:
|
||||||
RUN_TESTS: "true"
|
RUN_TESTS: "true"
|
||||||
script:
|
script:
|
||||||
- scripts/gitlab/test.sh stable
|
- scripts/gitlab/test-all.sh stable
|
||||||
tags:
|
tags:
|
||||||
- rust-stable
|
- rust-stable
|
||||||
|
|
||||||
@ -124,7 +124,7 @@ docs-jsonrpc:
|
|||||||
cargo-audit:
|
cargo-audit:
|
||||||
stage: optional
|
stage: optional
|
||||||
script:
|
script:
|
||||||
- scripts/gitlab/audit.sh
|
- scripts/gitlab/cargo-audit.sh
|
||||||
tags:
|
tags:
|
||||||
- rust-stable
|
- rust-stable
|
||||||
|
|
||||||
@ -134,7 +134,7 @@ test-android:
|
|||||||
variables:
|
variables:
|
||||||
CARGO_TARGET: armv7-linux-androideabi
|
CARGO_TARGET: armv7-linux-androideabi
|
||||||
script:
|
script:
|
||||||
- scripts/gitlab/test.sh stable
|
- scripts/gitlab/test-all.sh stable
|
||||||
tags:
|
tags:
|
||||||
- rust-arm
|
- rust-arm
|
||||||
|
|
||||||
@ -146,7 +146,7 @@ test-darwin:
|
|||||||
CXX: g++
|
CXX: g++
|
||||||
RUN_TESTS: "true"
|
RUN_TESTS: "true"
|
||||||
script:
|
script:
|
||||||
- scripts/gitlab/test.sh stable
|
- scripts/gitlab/test-all.sh stable
|
||||||
tags:
|
tags:
|
||||||
- rust-osx
|
- rust-osx
|
||||||
|
|
||||||
@ -156,7 +156,7 @@ test-windows:
|
|||||||
CARGO_TARGET: x86_64-pc-windows-msvc
|
CARGO_TARGET: x86_64-pc-windows-msvc
|
||||||
RUN_TESTS: "true"
|
RUN_TESTS: "true"
|
||||||
script:
|
script:
|
||||||
- sh scripts/gitlab/test.sh stable
|
- sh scripts/gitlab/test-all.sh stable
|
||||||
tags:
|
tags:
|
||||||
- rust-windows
|
- rust-windows
|
||||||
|
|
||||||
@ -165,7 +165,7 @@ test-beta:
|
|||||||
variables:
|
variables:
|
||||||
RUN_TESTS: "true"
|
RUN_TESTS: "true"
|
||||||
script:
|
script:
|
||||||
- scripts/gitlab/test.sh beta
|
- scripts/gitlab/test-all.sh beta
|
||||||
tags:
|
tags:
|
||||||
- rust-beta
|
- rust-beta
|
||||||
|
|
||||||
@ -174,6 +174,6 @@ test-nightly:
|
|||||||
variables:
|
variables:
|
||||||
RUN_TESTS: "true"
|
RUN_TESTS: "true"
|
||||||
script:
|
script:
|
||||||
- scripts/gitlab/test.sh nightly
|
- scripts/gitlab/test-all.sh nightly
|
||||||
tags:
|
tags:
|
||||||
- rust-nightly
|
- rust-nightly
|
||||||
|
@ -25,11 +25,11 @@ time cargo build --target $CARGO_TARGET --release -p ethkey-cli
|
|||||||
time cargo build --target $CARGO_TARGET --release -p whisper-cli
|
time cargo build --target $CARGO_TARGET --release -p whisper-cli
|
||||||
|
|
||||||
echo "__________Sign binaries__________"
|
echo "__________Sign binaries__________"
|
||||||
scripts/gitlab/sign.cmd $keyfile $certpass target/$CARGO_TARGET/release/parity.exe
|
scripts/gitlab/sign-win.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-win.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-win.cmd $keyfile $certpass target/$CARGO_TARGET/release/ethstore.exe
|
||||||
scripts/gitlab/sign.cmd $keyfile $certpass target/$CARGO_TARGET/release/ethkey.exe
|
scripts/gitlab/sign-win.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/whisper.exe
|
||||||
|
|
||||||
echo "_____ Post-processing binaries _____"
|
echo "_____ Post-processing binaries _____"
|
||||||
rm -rf artifacts
|
rm -rf artifacts
|
||||||
|
Loading…
Reference in New Issue
Block a user