Skip to content

Commit 4dfe87d

Browse files
committed
CI: Change MSRV test not using metric
Using metric will cause github setting page show it as `build_on_msrv(1.77)`. It will require admin to change github setting page when we bump MSRV. Change it to hard coded number, so github setting page will how as `build_on_msrv` only. Signed-off-by: Gris Ge <[email protected]>
1 parent 6bd5418 commit 4dfe87d

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/msrv.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,14 @@ jobs:
1414
build_on_msrv:
1515
strategy:
1616
fail-fast: true
17-
matrix:
18-
include:
19-
- msrv: "1.77"
2017

2118
runs-on: ubuntu-latest
2219

2320
steps:
2421
- uses: actions/checkout@v5
2522

26-
- name: Install Rust ${{ matrix.msrv }}
27-
run: rustup install ${{ matrix.msrv }}
23+
- name: Install Rust 1.77
24+
run: rustup install 1.77
2825

2926
- name: Build test
30-
run: cargo +${{ matrix.msrv }} build --ignore-rust-version
27+
run: cargo +1.77 build --ignore-rust-version

0 commit comments

Comments
 (0)