1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-01-20 21:18:26 +02:00

No need to run apt update before apt install (#634)

The VMs on GitHub have updated APT caches.
This commit is contained in:
Martin Geisler 2023-05-24 21:58:34 +02:00 committed by GitHub
parent 366e24360e
commit 2ddd7770f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,9 @@ jobs:
uses: ./.github/workflows/setup-rust-cache
- name: Install dependencies
run: sudo apt update && sudo apt install gcc-aarch64-linux-gnu
run: |
sudo apt update
sudo apt install gcc-aarch64-linux-gnu
- name: Install toolchain
run: rustup target add ${{ matrix.target }}
@ -107,7 +109,9 @@ jobs:
- name: Install Gettext
if: matrix.language != 'en'
run: sudo apt install gettext
run: |
sudo apt update
sudo apt install gettext
- name: Install mdbook
uses: ./.github/workflows/install-mdbook