82a148a99b
* tests splitted, phase 1 * typo * fix wrong launch commands * typos * rearrangements * use `nproc` function for threads * use nproc for threads * let theads be auto, build-andriod no more in regular run * split val chain and cargo check * renamed some files * wrong phase * check rust files before test jobs * lint error * rust files modivied var * test except changes * add rust_changes except * lint error * fixes * .gitlab-ci.yml can't be excluded * pipeline shouldn't start * pipeline must go * pipeline must go 2 * pipeline must go 3 * pipeline must go 4 * pipeline must go 5 * pipeline must go 6 * pipeline must go 7 * pipeline must not go 1 * pipeline must go 8 * avoid skippng tests yet, reintroducing them after the caching * test theory * parallelized cargo check with combusting helicopters * less uploads * alias for cargo checks * nice template
31 lines
915 B
Bash
Executable File
31 lines
915 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
|
|
(beta|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
|