Skip to content

Commit fff860b

Browse files
authored
Merge pull request #2196 from kinnison/badges
Simplify workflow names and update README for badges
2 parents 01fb32f + 1f477cd commit fff860b

13 files changed

+23
-23
lines changed

.github/workflows/centos-fmt-clippy-on-all.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is ci/actions-templates/centos-fmt-clippy.yaml
22
# Do not edit this file in .github/workflows
33

4-
name: Centos checks, formatting, clippy, and shellcheck, of Rustup
4+
name: General Checks
55

66
on:
77
pull_request:

.github/workflows/linux-builds-on-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is ci/actions-templates/linux-builds-template.yaml
22
# Do not edit this file in .github/workflows
33

4-
name: Linux-hosted builds of Rustup (master) # skip-pr skip-stable
4+
name: Linux (master) # skip-pr skip-stable
55

66
on:
77
push: # skip-pr

.github/workflows/linux-builds-on-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is ci/actions-templates/linux-builds-template.yaml
22
# Do not edit this file in .github/workflows
33

4-
name: Linux-hosted builds of Rustup (PR) # skip-master skip-stable
4+
name: Linux (PR) # skip-master skip-stable
55

66
on:
77
pull_request: # skip-master skip-stable

.github/workflows/linux-builds-on-stable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is ci/actions-templates/linux-builds-template.yaml
22
# Do not edit this file in .github/workflows
33

4-
name: Linux-hosted builds of Rustup (stable) # skip-master skip-pr
4+
name: Linux (stable) # skip-master skip-pr
55

66
on:
77
push: # skip-pr

.github/workflows/macos-builds-on-all.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is ci/actions-templates/macos-builds-template.yaml
22
# Do not edit this file in .github/workflows
33

4-
name: Mac OS builds of Rustup
4+
name: Mac OS
55
on:
66
pull_request:
77
branches:

.github/workflows/windows-builds-on-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is ci/actions-templates/windows-builds-template.yaml
22
# Do not edit this file in .github/workflows
33

4-
name: Windows builds of Rustup (master) # skip-pr skip-stable
4+
name: Windows (master) # skip-pr skip-stable
55

66
on:
77
push: # skip-pr

.github/workflows/windows-builds-on-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is ci/actions-templates/windows-builds-template.yaml
22
# Do not edit this file in .github/workflows
33

4-
name: Windows builds of Rustup (PR) # skip-master skip-stable
4+
name: Windows (PR) # skip-master skip-stable
55

66
on:
77
pull_request: # skip-master skip-stable

.github/workflows/windows-builds-on-stable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is ci/actions-templates/windows-builds-template.yaml
22
# Do not edit this file in .github/workflows
33

4-
name: Windows builds of Rustup (stable) # skip-master skip-pr
4+
name: Windows (stable) # skip-master skip-pr
55

66
on:
77
push: # skip-pr

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# rustup: the Rust toolchain installer
22

3-
| CI | Build Status |
3+
| Master CI | Build Status |
44
|--------------|----------------------------------------------------------|
5-
| Travis | [![Travis Build Status][travis-badge]][travis-url] |
6-
| AppVeyor | [![AppVeyor Build Status][appveyor-badge]][appveyor-url] |
5+
| Windows | ![Windows builds][actions-windows-master] |
6+
| Mac OS | ![Mac OS builds][actions-macos-master] |
7+
| Linux Etc | ![Linux (etc) builds][actions-linux-master] |
78

89
*rustup* installs [The Rust Programming Language][rustlang] from the official
910
release channels, enabling you to easily switch between stable, beta,
@@ -811,7 +812,6 @@ Licensed under either of
811812
at your option.
812813

813814
<!-- Badges -->
814-
[travis-url]: https://travis-ci.com/rust-lang/rustup
815-
[travis-badge]: https://travis-ci.com/rust-lang/rustup.svg
816-
[appveyor-url]: https://ci.appveyor.com/project/rust-lang-libs/rustup
817-
[appveyor-badge]: https://ci.appveyor.com/api/projects/status/github/rust-lang/rustup?svg=true
815+
[actions-windows-master]: https://github.com/rust-lang/rustup/workflows/Windows%20(master)/badge.svg
816+
[actions-macos-master]: https://github.com/rust-lang/rustup/workflows/Mac%20OS/badge.svg?branch=master
817+
[actions-linux-master]: https://github.com/rust-lang/rustup/workflows/Linux%20(master)/badge.svg

ci/actions-templates/centos-fmt-clippy-template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is ci/actions-templates/centos-fmt-clippy.yaml
22
# Do not edit this file in .github/workflows
33

4-
name: Centos checks, formatting, clippy, and shellcheck, of Rustup
4+
name: General Checks
55

66
on:
77
pull_request:

0 commit comments

Comments
 (0)