Skip to content

Commit 19a06a9

Browse files
committed
ci: Fixes ARM build on libc
1 parent de5852a commit 19a06a9

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.github/workflows/builds-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: sudo apt install --assume-yes ${{ matrix.packages }}
3232
- name: Configure cargo linker to use
3333
if: matrix.linker != ''
34-
run: mkdir .cargo && echo -ne '[target.aarch64-unknown-linux-gnu]\nlinker = "${{ matrix.linker }}"' > .cargo/config
34+
run: mkdir .cargo && echo -ne '[target.${{ matrix.target }}]\nlinker = "${{ matrix.linker }}"' > .cargo/config
3535
- name: Adds rust target
3636
run: rustup target add ${{ matrix.target }}
3737
- name: Build

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v1.1.0
4+
5+
Adds OpenSSL static library dependency
6+
37
## v1.0.1
48

59
Adds ARM targets on releases

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ hamlib-client = "1.0.0"
1515
lazy_static = "1.5.0"
1616
log = "0.4.22"
1717
log4rs = "1.3.0"
18+
openssl = { version = "0.10.66", features = ["vendored"] }
1819
regex = "1.10.6"
1920
reqwest = { version = "0.12.7", features = ["json"] }
2021
serde = { version = "1.0.209", features = ["derive"] }

0 commit comments

Comments
 (0)