Skip to content

Commit 4d2e0fd

Browse files
committedDec 31, 2021
Auto merge of #92465 - matthiaskrgr:rollup-yuary84, r=matthiaskrgr
Rollup of 7 pull requests Successful merges: - #90383 (Extend check for UnsafeCell in consts to cover unions) - #91375 (config.rs: Add support for a per-target default_linker option.) - #91480 (rustdoc: use smaller number of colors to distinguish items) - #92338 (Add try_reserve and try_reserve_exact for OsString) - #92405 (Add a couple needs-asm-support headers to tests) - #92435 (Sync rustc_codegen_cranelift) - #92440 (Fix mobile toggles position) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents cfa3fe5 + 2da54c7 commit 4d2e0fd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+450
-158
lines changed
 

‎compiler/rustc_codegen_cranelift/.github/workflows/main.yml

+15
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ on:
55
- pull_request
66

77
jobs:
8+
rustfmt:
9+
runs-on: ubuntu-latest
10+
timeout-minutes: 10
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
15+
- name: Install rustfmt
16+
run: |
17+
rustup component add rustfmt
18+
19+
- name: Rustfmt
20+
run: |
21+
cargo fmt --check
22+
823
build:
924
runs-on: ${{ matrix.os }}
1025
timeout-minutes: 60

‎compiler/rustc_codegen_cranelift/.github/workflows/nightly-cranelift.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test nightly Cranelift
33
on:
44
push:
55
schedule:
6-
- cron: '1 17 * * *' # At 01:17 UTC every day.
6+
- cron: '17 1 * * *' # At 01:17 UTC every day.
77

88
jobs:
99
build:

0 commit comments

Comments
 (0)