Skip to content

Commit 4fb0d14

Browse files
authored
Disable musl in release build (#2143)
Our cross-compiled musl builds do not currently compile (OOM). To unblock releases, this change disables these builds for now.
1 parent dd9372d commit 4fb0d14

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
strategy:
5353
matrix:
5454
arch: [amd64, arm64, arm]
55-
libc: [gnu, musl]
55+
libc: [gnu] # musl
5656

5757
# If we're not actually building on a release tag, don't short-circuit on
5858
# errors. This helps us know whether a failure is platform-specific.

linkerd2-proxy/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
#![deny(rust_2018_idioms, clippy::disallowed_methods, clippy::disallowed_types)]
44
#![forbid(unsafe_code)]
5+
#![recursion_limit = "256"]
56

67
// Emit a compile-time error if no TLS implementations are enabled. When adding
78
// new implementations, add their feature flags here!

0 commit comments

Comments
 (0)