Skip to content

Commit

Permalink
Fix testcases for cross compilation
Browse files Browse the repository at this point in the history
Downgrade bindgen version to 0.70.1 to fix test cases. New bindgen
versions break cross build
  • Loading branch information
catango committed Jan 12, 2025
1 parent 7003e98 commit bbca736
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,9 @@ jobs:
- name: Fetch
run: cargo fetch --locked
- name: Build
run: cargo build --frozen --verbose --target ${{ matrix.target }} --no-default-features
run: |
cargo install [email protected]
cargo build --frozen --verbose --target ${{ matrix.target }} --no-default-features
- name: Check binary
run: file target/${{ matrix.target }}/debug/librespot
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- [test] Bindgen 0.71 breaks test cases when crosscompiling. Using bindgen 0.70.1 still works.
- [core] Fix "no native root CA certificates found" on platforms unsupported
by `rustls-native-certs`.
- [core] Fix all APs rejecting with "TryAnotherAP" when connecting session
Expand Down

0 comments on commit bbca736

Please sign in to comment.