Skip to content

Commit

Permalink
Merge pull request #4 from bartvdbraak/feat/additional-build-targets
Browse files Browse the repository at this point in the history
feat: add target tests file for debugging
  • Loading branch information
bartvdbraak committed Nov 7, 2023
2 parents 969c4d0 + c281ff1 commit 06fb411
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 6 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
matrix:
name:
- linux-x86-64-gnu
- linux-x86-64-musl
- linux-armhf-gnu
- linux-arm64-gnu
- mac-x86-64
- mac-arm64
- windows-gnu
Expand All @@ -22,6 +25,24 @@ jobs:
cross: false
experimental: false

- name: linux-x86-64-musl
os: ubuntu-latest
target: x86_64-unknown-linux-musl
cross: true
experimental: false

- name: linux-armhf-gnu
os: ubuntu-20.04
target: armv7-unknown-linux-gnueabihf
cross: true
experimental: false

- name: linux-arm64-gnu
os: ubuntu-20.04
target: aarch64-unknown-linux-gnu
cross: true
experimental: false

- name: mac-x86-64
os: macos-latest
target: x86_64-apple-darwin
Expand Down
23 changes: 17 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ azure_security_keyvault = "0.17.0"
clap = { version = "4.4.7", features = ["derive"] }
futures = "0.3.29"
tokio = {version = "1.33.0", features = ["full"]}

[target.'cfg(all(target_os = "linux", any(target_env = "musl", target_arch = "arm", target_arch = "aarch64")))'.dependencies]
openssl = { version = "0.10", features = ["vendored"] }

0 comments on commit 06fb411

Please sign in to comment.