Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fcc7c55

Browse files
committedDec 31, 2022
try
1 parent e41d603 commit fcc7c55

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed
 

‎.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -598,9 +598,11 @@ jobs:
598598
strategy:
599599
matrix:
600600
include:
601-
- name: dist-x86_64-linux
602-
os: ubuntu-20.04-xl
603-
env: {}
601+
- name: aarch64-gnu
602+
os:
603+
- self-hosted
604+
- ARM64
605+
- linux
604606
timeout-minutes: 600
605607
runs-on: "${{ matrix.os }}"
606608
steps:

‎src/ci/github-actions/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -759,9 +759,8 @@ jobs:
759759
strategy:
760760
matrix:
761761
include:
762-
- &dist-x86_64-linux
763-
name: dist-x86_64-linux
764-
<<: *job-linux-xl
762+
- name: aarch64-gnu
763+
<<: *job-aarch64-linux
765764

766765
master:
767766
name: master

‎src/tools/tidy/src/no_merge.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fn find_merge_commits(remote: &str) -> Result<String, String> {
4848
"--format=%s",
4949
&format!("{remote}/master..HEAD"),
5050
// Ignore subtree syncs. Add your new subtrees here.
51-
":!src/tools/miri",
51+
// ":!src/tools/miri", // Ignore miri to see whether its the only thing missing or whatevers going on
5252
":!src/tools/rust-analyzer",
5353
":!compiler/rustc_smir",
5454
":!library/portable-simd",

0 commit comments

Comments
 (0)
Please sign in to comment.