Skip to content

Commit c2f7219

Browse files
committed
Fixing bors.toml
1 parent 8dd53c7 commit c2f7219

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

.github/bors.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ block_labels = ["needs-decision"]
22
delete_merged_branches = true
33
required_approvals = 1
44
status = [
5-
"ci-linux (stable)",
6-
"ci-linux (1.59.0)",
7-
"build-other (macOS-latest)",
8-
"build-other (windows-latest)",
9-
"Rustfmt"
5+
"build-riscv (stable%)",
6+
"build-riscv (1.59.0%)",
7+
"build-others (%)",
8+
"clippy (stable%),
9+
"rustfmt",
1010
]

.github/workflows/ci.yaml renamed to .github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
pull_request:
55
merge_group:
66

7-
name: Continuous integration
7+
name: Build check
88

99
jobs:
1010
# We check that the crate builds and links for all the toolchains and targets.
11-
ci-riscv:
11+
build-riscv:
1212
strategy:
1313
matrix:
1414
# All generated code should be running on stable now, MRSV is 1.59.0
@@ -17,7 +17,7 @@ jobs:
1717
- riscv32i-unknown-none-elf
1818
- riscv32imc-unknown-none-elf
1919
- riscv32imac-unknown-none-elf
20-
- riscv64gc-unknown-linux-gnu
20+
- riscv64imac-unknown-none-elf
2121
- riscv64gc-unknown-none-elf
2222
cargo_flags: [ "--no-default-features", "--all-features" ]
2323
include:
@@ -36,7 +36,7 @@ jobs:
3636
run: cargo build --target ${{ matrix.target }} ${{ matrix.cargo_flags }}
3737

3838
# On MacOS, Ubuntu, and Windows, we at least make sure that the crate builds and links.
39-
ci-others:
39+
build-others:
4040
strategy:
4141
matrix:
4242
os:

.github/workflows/clippy.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ on:
44
pull_request:
55
merge_group:
66

7-
name: Clippy lints
7+
name: Lints compliance check
88

99
env:
1010
CLIPPY_PARAMS: -W clippy::all -W clippy::pedantic -W clippy::nursery -W clippy::cargo
1111

1212
jobs:
1313
clippy:
14-
name: Clippy
1514
strategy:
1615
matrix:
1716
toolchain: [ stable, nightly ]

.github/workflows/rustfmt.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ on:
77
name: Code formatting check
88

99
jobs:
10-
fmt:
11-
name: Rustfmt
10+
rustfmt:
1211
runs-on: ubuntu-latest
1312
steps:
1413
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)