Skip to content

Commit

Permalink
Use aarch64 openssl-dev for aarch64 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarx committed Jan 24, 2025
1 parent c5a9a67 commit 023c187
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Build archive
shell: bash
run: |
name="${{ format('nemo_{0}_{1}', github.ref_name, matrix.target) }}"
name="${{ format('nemo_{0}_{1}', github.ref_name, matrix.platform.target) }}"
mkdir -p "$name"
cp {README.md,LICENSE-APACHE,LICENSE-MIT} "$name"
Expand Down
2 changes: 1 addition & 1 deletion Cross.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
pre-build = [ "apt-get update && apt-get install --assume-yes libssl-dev pkg-config" ]

[target.aarch64-unknown-linux-gnu]
pre-build = [ "apt-get update && apt-get install --assume-yes libssl-dev pkg-config" ]
pre-build = [ "dpkg --add-architecture arm64 && apt-get update && apt-get install --assume-yes libssl-dev:arm64 pkg-config" ]

0 comments on commit 023c187

Please sign in to comment.