Skip to content

Commit

Permalink
ci: Fixes ARM build on libc
Browse files Browse the repository at this point in the history
  • Loading branch information
sardylan committed Sep 10, 2024
1 parent de5852a commit 19a06a9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/builds-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: sudo apt install --assume-yes ${{ matrix.packages }}
- name: Configure cargo linker to use
if: matrix.linker != ''
run: mkdir .cargo && echo -ne '[target.aarch64-unknown-linux-gnu]\nlinker = "${{ matrix.linker }}"' > .cargo/config
run: mkdir .cargo && echo -ne '[target.${{ matrix.target }}]\nlinker = "${{ matrix.linker }}"' > .cargo/config
- name: Adds rust target
run: rustup target add ${{ matrix.target }}
- name: Build
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.1.0

Adds OpenSSL static library dependency

## v1.0.1

Adds ARM targets on releases
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ hamlib-client = "1.0.0"
lazy_static = "1.5.0"
log = "0.4.22"
log4rs = "1.3.0"
openssl = { version = "0.10.66", features = ["vendored"] }
regex = "1.10.6"
reqwest = { version = "0.12.7", features = ["json"] }
serde = { version = "1.0.209", features = ["derive"] }
Expand Down

0 comments on commit 19a06a9

Please sign in to comment.