add CI_ONLY_WHEN_CHANNEL and run x86_64-gnu-stable only on nightly

This commit is contained in:
Pietro Albini 2021-07-28 15:18:18 +02:00
parent eba3228b2a
commit 4b5ac09e32
No known key found for this signature in database
GPG key ID: CD76B35F7734769E
3 changed files with 42 additions and 25 deletions

View file

@ -263,6 +263,7 @@ jobs:
env: env:
IMAGE: x86_64-gnu IMAGE: x86_64-gnu
RUST_CI_OVERRIDE_RELEASE_CHANNEL: stable RUST_CI_OVERRIDE_RELEASE_CHANNEL: stable
CI_ONLY_WHEN_CHANNEL: nightly
os: ubuntu-latest-xl os: ubuntu-latest-xl
- name: x86_64-gnu-aux - name: x86_64-gnu-aux
os: ubuntu-latest-xl os: ubuntu-latest-xl

View file

@ -416,6 +416,10 @@ jobs:
env: env:
IMAGE: x86_64-gnu IMAGE: x86_64-gnu
RUST_CI_OVERRIDE_RELEASE_CHANNEL: stable RUST_CI_OVERRIDE_RELEASE_CHANNEL: stable
# Only run this job on the nightly channel. Running this on beta
# could cause failures when `dev: 1` in `stage0.txt`, and running
# this on stable is useless.
CI_ONLY_WHEN_CHANNEL: nightly
<<: *job-linux-xl <<: *job-linux-xl
- name: x86_64-gnu-aux - name: x86_64-gnu-aux

View file

@ -8,31 +8,43 @@ IFS=$'\n\t'
source "$(cd "$(dirname "$0")" && pwd)/../shared.sh" source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
if [[ -z "${CI_ONLY_WHEN_SUBMODULES_CHANGED+x}" ]]; then if [[ -n "${CI_ONLY_WHEN_SUBMODULES_CHANGED-}" ]]; then
echo "Executing the job since there is no skip rule in effect" git fetch "https://github.com/$GITHUB_REPOSITORY" "$GITHUB_BASE_REF"
exit 0 BASE_COMMIT="$(git merge-base FETCH_HEAD HEAD)"
echo "Searching for toolstate changes between $BASE_COMMIT and $(git rev-parse HEAD)"
if git diff "$BASE_COMMIT" | grep --quiet "^index .* 160000"; then
# Submodules pseudo-files inside git have the 160000 permissions, so when
# those files are present in the diff a submodule was updated.
echo "Submodules were updated"
elif ! git diff --quiet "$BASE_COMMIT" -- src/tools/clippy src/tools/rustfmt; then
# There is not an easy blanket search for subtrees. For now, manually list
# the subtrees.
echo "Clippy or rustfmt subtrees were updated"
elif ! (git diff --quiet "$BASE_COMMIT" -- \
src/test/rustdoc-gui \
src/librustdoc \
src/tools/rustdoc-gui); then
# There was a change in either rustdoc or in its GUI tests.
echo "Rustdoc was updated"
else
echo "Not executing this job since no submodules nor subtrees were updated"
ciCommandSetEnv SKIP_JOB 1
exit 0
fi
fi fi
git fetch "https://github.com/$GITHUB_REPOSITORY" "$GITHUB_BASE_REF" if [[ -n "${CI_ONLY_WHEN_CHANNEL-}" ]]; then
BASE_COMMIT="$(git merge-base FETCH_HEAD HEAD)" if [[ "${CI_ONLY_WHEN_CHANNEL}" = "$(cat src/ci/channel)" ]]; then
echo "The channel is the expected one"
echo "Searching for toolstate changes between $BASE_COMMIT and $(git rev-parse HEAD)" else
echo "Not executing this job as the channel is not the expected one"
if git diff "$BASE_COMMIT" | grep --quiet "^index .* 160000"; then ciCommandSetEnv SKIP_JOB 1
# Submodules pseudo-files inside git have the 160000 permissions, so when exit 0
# those files are present in the diff a submodule was updated. fi
echo "Executing the job since submodules are updated"
elif ! git diff --quiet "$BASE_COMMIT" -- src/tools/clippy src/tools/rustfmt; then
# There is not an easy blanket search for subtrees. For now, manually list
# the subtrees.
echo "Executing the job since clippy or rustfmt subtree was updated"
elif ! (git diff --quiet "$BASE_COMMIT" -- \
src/test/rustdoc-gui \
src/librustdoc \
src/tools/rustdoc-gui); then
# There was a change in either rustdoc or in its GUI tests.
echo "Executing the job since rustdoc was updated"
else
echo "Not executing this job since no submodules nor subtrees were updated"
ciCommandSetEnv SKIP_JOB 1
fi fi
echo "Executing the job since there is no skip rule preventing the execution"
exit 0