Skip to content

Commit a0a2ddf

Browse files
committed
Get intralink information from rustdoc.
1 parent 423e493 commit a0a2ddf

File tree

67 files changed

+1527
-1177
lines changed

Some content is hidden

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

67 files changed

+1527
-1177
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,17 @@ jobs:
2020
os: [ubuntu-latest, macos-latest, windows-latest]
2121

2222
steps:
23-
- name: Install rust
23+
- name: Install rust (stable)
2424
uses: dtolnay/rust-toolchain@stable
25-
with:
26-
# We need to install the source of the standard library for the integration tests to check that links
27-
# to the standard library are correctly generated.
28-
components: rust-src, rustfmt
25+
26+
# We need to install rust nightly to run the integration tests: nightly is needed to get the rustdoc information
27+
# for intralinks. This will not be needed once that feature stabilizes
28+
# (https://github.com/rust-lang/rust/issues/76578).
29+
- name: Install rust (nightly)
30+
uses: dtolnay/rust-toolchain@nightly
31+
32+
- name: Use stable rust for the build
33+
run: rustup default stable
2934

3035
- name: Install cargo plugins
3136
run: |

0 commit comments

Comments
 (0)