You've already forked comprehensive-rust
mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-07-06 22:45:40 +02:00
Updates for Rust 1.82 (#2449)
Rust 1.82 adds `&raw` expressions, and marks some attributes as unsafe.
This commit is contained in:
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
@ -55,6 +55,9 @@ jobs:
|
||||
- name: Setup Rust cache
|
||||
uses: ./.github/workflows/setup-rust-cache
|
||||
|
||||
- name: Update Rust
|
||||
run: rustup update
|
||||
|
||||
- name: Build Rust code
|
||||
run: cargo build
|
||||
|
||||
@ -89,7 +92,9 @@ jobs:
|
||||
sudo apt install gcc-aarch64-linux-gnu
|
||||
|
||||
- name: Install toolchain
|
||||
run: rustup target add ${{ matrix.target }}
|
||||
run: |
|
||||
rustup update
|
||||
rustup target add ${{ matrix.target }}
|
||||
|
||||
- name: Build Rust code
|
||||
working-directory: ${{ matrix.directory }}
|
||||
@ -140,6 +145,9 @@ jobs:
|
||||
sudo apt update
|
||||
sudo apt install gettext
|
||||
|
||||
- name: Update Rust
|
||||
run: rustup update
|
||||
|
||||
- name: Install mdbook
|
||||
uses: ./.github/workflows/install-mdbook
|
||||
|
||||
|
Reference in New Issue
Block a user