File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -729,6 +729,8 @@ jobs:
729
729
730
730
# We don't expect to keep being clippy-clean on nightly Rust,
731
731
# so the "toolchain boilerplate" is deliberately omitted
732
+ # This just means we end up testing on the pinned stable even in the cronjob
733
+ # CI, which isn't that useful but specially omitting that task is more work than it's worth
732
734
733
735
# Clippy job > Install and run clippy steps
734
736
- name : Install clippy
Original file line number Diff line number Diff line change @@ -194,7 +194,6 @@ if not ${event_name}
194
194
end
195
195
196
196
is_schedule = eq "${event_name}" "schedule"
197
- is_pr = eq "${event_name}" "pull_request"
198
197
is_dispatch = eq "${event_name}" "workflow_dispatch"
199
198
dispatch_needs_nightly = set false
200
199
@@ -207,7 +206,7 @@ if is_dispatch
207
206
end
208
207
end
209
208
210
- if ${is_schedule} or ${is_pr} or ${ dispatch_needs_nightly}
209
+ if ${is_schedule} or ${dispatch_needs_nightly}
211
210
echo "Setting up CI environment for forced-nightly Rust build"
212
211
appendfile ${env_file} "ICU4X_NIGHTLY_TOOLCHAIN=nightly\n"
213
212
appendfile ${env_file} "INSTALLED_NIGHTLY_VERSION=nightly\n"
You can’t perform that action at this time.
0 commit comments