Skip to content

Commit

Permalink
Remove deprecate action
Browse files Browse the repository at this point in the history
https://old.reddit.com/r/rust/comments/vyx4oj/actionsrs_organization_became_unmaintained/

Looking at this holistically, I don't fully understand *why* we need an
action here? Seems like we can just use rustup? nowadays github runners
come with rustup pre-installed.
  • Loading branch information
matklad committed Jul 14, 2022
1 parent 9dd1ce3 commit 2c73b29
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ env:
RUSTFLAGS: "-D warnings -W unreachable-pub -W rust-2021-compatibility"
RUSTUP_MAX_RETRIES: 10

defaults:
run:
shell: bash

jobs:
rust:
if: github.repository == 'rust-lang/rust-analyzer'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ env:
RUSTFLAGS: "-D warnings -W unreachable-pub"
RUSTUP_MAX_RETRIES: 10

defaults:
run:
shell: bash

jobs:
metrics:
if: github.repository == 'rust-lang/rust-analyzer'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
branches:
- release

defaults:
run:
shell: bash

jobs:
publish:
name: publish
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ env:
MACOSX_DEPLOYMENT_TARGET: 10.15
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc

defaults:
run:
shell: bash

jobs:
dist:
strategy:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/rustdoc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ env:
RUSTFLAGS: "-D warnings -W unreachable-pub"
RUSTUP_MAX_RETRIES: 10

defaults:
run:
shell: bash

jobs:
rustdoc:
if: github.repository == 'rust-lang/rust-analyzer'
Expand Down

0 comments on commit 2c73b29

Please sign in to comment.