Skip to content

Commit 17865ac

Browse files
author
admin
committed
MSRV
1 parent bb570d5 commit 17865ac

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/build.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ env:
2727
jobs:
2828
build-test-lint-linux:
2929
name: Linux - FFmpeg ${{ matrix.ffmpeg.version }} - build, test and lint
30-
runs-on: ubuntu-22.04
30+
runs-on: ubuntu-latest
3131

3232
strategy:
3333
matrix:
@@ -187,7 +187,7 @@ jobs:
187187
run: cargo test $CARGO_FEATURES
188188

189189
msrv:
190-
runs-on: ubuntu-22.04
190+
runs-on: ubuntu-latest
191191

192192
steps:
193193
- uses: actions/checkout@v4
@@ -209,5 +209,13 @@ jobs:
209209

210210
- name: Use predefined lockfile
211211
run: mv Cargo.lock.MSRV Cargo.lock
212+
- name: Debug dependencies
213+
run: |
214+
echo "=== Cargo Tree Output ==="
215+
cargo tree --locked
216+
echo "=== Detailed Dependency Resolution ==="
217+
cargo metadata --locked --format-version=1 | jq '.resolve.nodes[] | {id: .id, deps: .deps[].name}' || true
218+
echo "=== Package Dependencies ==="
219+
cargo metadata --locked --format-version=1 | jq '.packages[] | {name: .name, version: .version, dependencies: [.dependencies[].name]}' || true
212220
- name: Run cargo check
213221
run: cargo check --locked $CARGO_FEATURES

0 commit comments

Comments
 (0)