Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4d2e0fd

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

File tree

45 files changed

+450
-158
lines changed

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

Lines changed: 15 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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)
This repository has been archived.