Skip to content

Commit

Permalink
Get intralink information from rustdoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
orium committed Jun 19, 2024
1 parent 1055376 commit e3132e9
Show file tree
Hide file tree
Showing 62 changed files with 1,327 additions and 1,440 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,17 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- name: Install rust
- name: Install rust (stable)
uses: dtolnay/rust-toolchain@stable
with:
# We need to install the source of the standard library for the integration tests to check that links
# to the standard library are correctly generated.
components: rust-src, rustfmt

# We need to install rust nightly to run the integration tests: nightly is needed to get the rustdoc information
# for intralinks. This will not be needed once that feature stabilizes
# (https://github.com/rust-lang/rust/issues/76578).
- name: Install rust (nightly)
uses: dtolnay/rust-toolchain@nightly

- name: Use stable rust for the build
run: rustup default stable

- name: Install cargo plugins
run: |
Expand Down
Loading

0 comments on commit e3132e9

Please sign in to comment.