403c07c305
* docs: prepare changelog for 2.1.0 beta * docs: move changelog for 2.0.x to stable * docs: add changelog for legacy 1.11.x * docs: add release notes for 2.0.x beta releases * docs: mark 1.11 end of life * docs: prepare release notes for 2.0.5 stable * docs: prepare release notes for 2.1.0 beta * ci: ignore docs in tests * docs: bump version in readme * docs: update changelog for 2.0.5 stable * docs: update changelog for 2.1.0 beta * docs: update changelog for 2.1.0 beta * docs: remove eip86 from release notes * docs: update changelog for 2.1.0 * docs: add changelog for 2.1.1 and 2.0.6 * docs: correct spelling of certain words in the latest changelog
45 lines
1.0 KiB
Bash
Executable File
45 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
# ARGUMENT $1 Rust flavor to test with (stable/beta/nightly)
|
|
|
|
set -e # fail on any error
|
|
set -u # treat unset variables as error
|
|
|
|
|
|
set -x # full command output for development
|
|
git log --graph --oneline --all --decorate=short -n 10
|
|
|
|
|
|
case $CI_COMMIT_REF_NAME in
|
|
(master|beta|stable)
|
|
export GIT_COMPARE=$CI_COMMIT_REF_NAME~
|
|
;;
|
|
(*)
|
|
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/ | 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 default $1
|
|
|
|
git submodule update --init --recursive
|
|
rustup show
|
|
|
|
exec ./test.sh
|
|
|
|
# if [[ "$CI_COMMIT_REF_NAME" == "nightly" ]];
|
|
# ### @TODO re-enable fail after https://github.com/paritytech/parity-import-tests/issues/3
|
|
# then sh scripts/aura-test.sh; # || exit $?;
|
|
# fi
|
|
|