Skip to content

Commit 5a6b3a6

Browse files
committed
[demo] rustdoc is unstable under rmeta changes
1 parent a28d221 commit 5a6b3a6

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -585,10 +585,10 @@ jobs:
585585
strategy:
586586
matrix:
587587
include:
588-
- name: dist-x86_64-linux
588+
- name: dist-aarch64-linux
589589
env:
590590
CODEGEN_BACKENDS: "llvm,cranelift"
591-
os: ubuntu-20.04-16core-64gb
591+
os: ubuntu-20.04-8core-32gb
592592
timeout-minutes: 600
593593
runs-on: "${{ matrix.os }}"
594594
steps:

src/ci/github-actions/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -734,11 +734,11 @@ jobs:
734734
strategy:
735735
matrix:
736736
include:
737-
- &dist-x86_64-linux
738-
name: dist-x86_64-linux
737+
- &dist-aarch64-linux
738+
name: dist-aarch64-linux
739739
env:
740740
CODEGEN_BACKENDS: llvm,cranelift
741-
<<: *job-linux-16c
741+
<<: *job-linux-8c
742742

743743

744744
master:
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// FIXME(fmease, #119216): Reenable this test!
2-
//@ ignore-test
3-
41
pub struct Inner<T> {
52
field: T,
63
}
@@ -12,8 +9,9 @@ where
129
}
1310

1411
// @has no_redundancy/struct.Outer.html
12+
// FIXME(fmease): Reverse the order of bounds again.
1513
// @has - '//*[@id="synthetic-implementations-list"]//*[@class="impl"]//h3[@class="code-header"]' \
16-
// "impl<T> Send for Outer<T>where T: Send + Copy"
14+
// "impl<T> Send for Outer<T>where T: Copy + Send"
1715
pub struct Outer<T> {
1816
inner_field: Inner<T>,
1917
}

0 commit comments

Comments
 (0)