e1d06efe60
* sccache "stop server" - > "show stats" * remove testing and beta from update, cli, etc. * Beta->Nigthly updater * Beta->Nightly * ->Nightly and fix * updater ->Stable * Testing->Nightly * Update scripts/gitlab/test-linux.sh Co-Authored-By: Denis Pisarev <denis.pisarev@parity.io> * sccache "stop server" - > "show stats" * remove testing and beta from update, cli, etc. * Beta->Nigthly updater * Beta->Nightly * ->Nightly and fix * updater ->Stable * Testing->Nightly * Update scripts/gitlab/test-linux.sh Co-Authored-By: Denis Pisarev <denis.pisarev@parity.io> * Update CHANGELOGs and version * temporarily allow darwin and windows to be built on any branch * fix check-benches job * Revert "temporarily allow darwin and windows to be built on any branch" This reverts commit 45c72f69e99cbe891f694e528a53eb3c3bd8f331. * fix check-benches job * Revert changing track from `nightly` to `stable` * fix test: rpc_parity_upgrade_ready * fix tests: rpc_parity_version_info, rpc_parity_releases_info Co-authored-by: Denis Pisarev <denis.pisarev@parity.io> Co-authored-by: s3krit <pugh@s3kr.it>
31 lines
910 B
Bash
Executable File
31 lines
910 B
Bash
Executable File
#!/bin/bash
|
|
echo "________Running rust_changes.sh________"
|
|
set -e # fail on any error
|
|
set -u # treat unset variables as error
|
|
|
|
echo "__________Checking if Rust files were changed__________"
|
|
git log --graph --oneline --decorate=short -n 10
|
|
|
|
case ${SCHEDULE_TAG:-${CI_COMMIT_REF_NAME}} in
|
|
(stable)
|
|
export GIT_COMPARE=origin/${SCHEDULE_TAG:-${CI_COMMIT_REF_NAME}}~
|
|
;;
|
|
(master|nightly)
|
|
export GIT_COMPARE=master~
|
|
;;
|
|
(*)
|
|
export GIT_COMPARE=master
|
|
;;
|
|
esac
|
|
|
|
export RUST_FILES_MODIFIED="$(git --no-pager diff --name-only $GIT_COMPARE...$CI_COMMIT_SHA | grep -v -e ^\\. -e ^LICENSE -e ^README.md -e ^CHANGELOG.md -e ^test.sh -e ^scripts/ -e ^docs/ -e ^docker/ -e ^snap/ | wc -l | tr -d ' ')"
|
|
echo "RUST_FILES_MODIFIED: $RUST_FILES_MODIFIED"
|
|
|
|
if [ "${RUST_FILES_MODIFIED}" = "0" ]
|
|
then
|
|
echo "__________Skipping Rust tests since no Rust files modified__________";
|
|
exit 0
|
|
fi
|
|
|
|
rustup show
|