Skip to content

Commit 115984d

Browse files
authored
Add aarch64-unknown-linux-musl to release targets (#17)
1 parent fe2f37f commit 115984d

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
features: "static_openssl",
3737
}
3838
- { target: aarch64-unknown-linux-gnu, os: ubuntu-20.04, nif: "2.16", use-cross: true }
39+
- { target: aarch64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.16", use-cross: true, features: "static_openssl" }
3940
- { target: aarch64-apple-darwin, os: macos-11, nif: "2.16" }
4041
- { target: x86_64-apple-darwin, os: macos-11, nif: "2.16" }
4142
- { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, nif: "2.16" }
@@ -51,6 +52,7 @@ jobs:
5152
features: "static_openssl",
5253
}
5354
- { target: aarch64-unknown-linux-gnu, os: ubuntu-20.04, nif: "2.15", use-cross: true }
55+
- { target: aarch64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.15", use-cross: true, features: "static_openssl" }
5456
- { target: aarch64-apple-darwin, os: macos-11, nif: "2.15" }
5557
- { target: x86_64-apple-darwin, os: macos-11, nif: "2.15" }
5658
- { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, nif: "2.15" }
@@ -66,6 +68,7 @@ jobs:
6668
features: "static_openssl",
6769
}
6870
- { target: aarch64-unknown-linux-gnu, os: ubuntu-20.04, nif: "2.14", use-cross: true }
71+
- { target: aarch64-unknown-linux-musl, os: ubuntu-20.04, nif: "2.14", use-cross: true, features: "static_openssl" }
6972
- { target: aarch64-apple-darwin, os: macos-11, nif: "2.14" }
7073
- { target: x86_64-apple-darwin, os: macos-11, nif: "2.14" }
7174
- { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, nif: "2.14" }

native/ex_tokenizers/.cargo/config

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,8 @@ rustflags = [
1414
rustflags = [
1515
"-C", "target-feature=-crt-static"
1616
]
17+
18+
[target.aarch64-unknown-linux-musl]
19+
rustflags = [
20+
"-C", "target-feature=-crt-static"
21+
]

0 commit comments

Comments
 (0)