We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5854680 commit 3d93c38Copy full SHA for 3d93c38
src/ci/scripts/should-skip-this.sh
@@ -19,9 +19,12 @@ if [[ -n "${CI_ONLY_WHEN_SUBMODULES_CHANGED-}" ]]; then
19
# those files are present in the diff a submodule was updated.
20
echo "Submodules were updated"
21
elif ! (git diff --quiet "$BASE_COMMIT" -- \
22
- src/tools/clippy src/tools/rustfmt src/tools/miri); then
+ src/tools/clippy src/tools/rustfmt src/tools/miri
23
+ library/std/src/sys); then
24
# There is not an easy blanket search for subtrees. For now, manually list
25
# the subtrees.
26
+ # Also run this when the platform-specific parts of std change, in case
27
+ # that breaks Miri.
28
echo "Tool subtrees were updated"
29
30
src/test/rustdoc-gui \
0 commit comments