We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1b0515 commit f113089Copy full SHA for f113089
.github/workflows/release.yml
@@ -68,7 +68,6 @@ jobs:
68
- name: Build
69
shell: bash
70
env:
71
- OPENSSL_STATIC: "1"
72
OPENSSL_VENDORED: "1"
73
run: |
74
if [ "${{ matrix.use_cross }}" = "true" ]; then
Cross.toml
@@ -1,2 +1,13 @@
1
[build.env]
2
-passthrough = ["OPENSSL_STATIC", "OPENSSL_VENDORED"]
+passthrough = ["OPENSSL_VENDORED"]
3
+
4
+[target.x86_64-unknown-linux-musl]
5
+pre-build = [
6
+ "apt-get update && apt-get install -y perl libssl-dev",
7
+]
8
9
+[target.aarch64-unknown-linux-gnu]
10
11
+ "dpkg --add-architecture $CROSS_DEB_ARCH",
12
+ "apt-get update && apt-get install -y perl libssl-dev:$CROSS_DEB_ARCH",
13
0 commit comments