Skip to content

Commit 565c24b

Browse files
authored
Minor: add comments explaining bad MSRV, output in json (#6857)
* Minor: add comments explaining bad MSRV * purposely introduce msrv brek * output in JSON format * Revert "purposely introduce msrv brek" This reverts commit 61872b6.
1 parent 3317989 commit 565c24b

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

.github/workflows/rust.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
run: cargo fmt --all -- --check
114114

115115
msrv:
116-
name: Verify MSRV
116+
name: Verify MSRV (Minimum Supported Rust Version)
117117
runs-on: ubuntu-latest
118118
container:
119119
image: amd64/rust
@@ -127,13 +127,19 @@ jobs:
127127
run: cargo update -p ahash --precise 0.8.7
128128
- name: Check arrow
129129
working-directory: arrow
130-
run: cargo msrv --log-target stdout verify
130+
run: |
131+
# run `cd arrow; cargo msrv verify` to see problematic dependencies
132+
cargo msrv verify --output-format=json
131133
- name: Check parquet
132134
working-directory: parquet
133-
run: cargo msrv --log-target stdout verify
135+
run: |
136+
# run `cd parquet; cargo msrv verify` to see problematic dependencies
137+
cargo msrv verify --output-format=json
134138
- name: Check arrow-flight
135139
working-directory: arrow-flight
136-
run: cargo msrv --log-target stdout verify
140+
run: |
141+
# run `cd arrow-flight; cargo msrv verify` to see problematic dependencies
142+
cargo msrv verify --output-format=json
137143
- name: Downgrade object_store dependencies
138144
working-directory: object_store
139145
# Necessary because tokio 1.30.0 updates MSRV to 1.63
@@ -143,4 +149,6 @@ jobs:
143149
cargo update -p url --precise 2.5.0
144150
- name: Check object_store
145151
working-directory: object_store
146-
run: cargo msrv --log-target stdout verify
152+
run: |
153+
# run `cd object_store; cargo msrv verify` to see problematic dependencies
154+
cargo msrv verify --output-format=json

0 commit comments

Comments
 (0)