Skip to content

Commit

Permalink
'llvm-tools-preview' component is now named 'llvm-tools'
Browse files Browse the repository at this point in the history
rust-lang/rustup#3578

updated `.github/workflows/ci.yaml` to use rust 1.78 instead of 1.62,
since the llvm-tools change happened in 1.67. also updated ubuntu 20.04
to 22.04
  • Loading branch information
gdamjan committed May 18, 2024
1 parent cfeaaa3 commit 7d9ccc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

continue-on-error: ${{ matrix.experimental || false }}

strategy:
matrix:
rust:
- 1.62.0
- 1.78.0
- nightly
include:
- rust: nightly
Expand All @@ -29,7 +29,7 @@ jobs:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy, llvm-tools-preview
components: rustfmt, clippy, llvm-tools
target: thumbv7m-none-eabi

- name: Install Python dependencies
Expand Down
2 changes: 1 addition & 1 deletion src/preface.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ $ rustup target add thumbv7m-none-eabi
$ # cargo-binutils
$ cargo install cargo-binutils

$ rustup component add llvm-tools-preview
$ rustup component add llvm-tools

```

Expand Down

0 comments on commit 7d9ccc4

Please sign in to comment.