Skip to content

Commit

Permalink
Fix testcases for cross compilation (#1443)
Browse files Browse the repository at this point in the history
Crossbuild breaks due to missing bindgen. Additionally install bindgen-cli as it is not part
of the default github runnter any more.
  • Loading branch information
catango authored Jan 18, 2025
1 parent 14e3965 commit c288cf7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,13 @@ jobs:

- name: Install the cross compiler rust targets
run: rustup target add ${{ matrix.target }}


- name: Update and Install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential cmake libclang1

- name: Install bindgen-cli
run: cargo install --force --locked bindgen-cli

- name: Install cross compiler
run: |
if [ ${{ matrix.target }} = "armv7-unknown-linux-gnueabihf" ]; then
Expand Down
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] Missing bindgen breaks crossbuild on recent runners. Now installing latest bindgen in addition.
- [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 c288cf7

Please sign in to comment.