Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sccache fails to build on non x86_64/aarch64 arches #1866

Merged
merged 1 commit into from
Sep 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ trust-dns-resolver = { version = "0.22.0", features = [
"dnssec-ring",
"dns-over-rustls",
"dns-over-https-rustls",
] }
], optional = true }
url = { version = "2", optional = true }
uuid = { version = "1.3", features = ["v4"] }
walkdir = "2"
Expand Down Expand Up @@ -147,7 +147,7 @@ all = [
]
azure = ["opendal", "reqsign"]
default = ["all"]
gcs = ["opendal", "reqsign", "url", "reqwest/blocking"]
gcs = ["opendal", "reqsign", "url", "reqwest/blocking", "trust-dns-resolver"]
gha = ["opendal"]
memcached = ["opendal/services-memcached"]
native-zlib = []
Expand All @@ -161,7 +161,7 @@ vendored-openssl = ["openssl?/vendored"]
# Enable features that require unstable features of Nightly Rust.
unstable = []
# Enables distributed support in the sccache client
dist-client = ["flate2", "hyper", "reqwest", "url", "sha2"]
dist-client = ["flate2", "hyper", "reqwest", "url", "sha2", "trust-dns-resolver"]
# Enables the sccache-dist binary
dist-server = [
"jwt",
Expand All @@ -172,6 +172,7 @@ dist-server = [
"reqwest",
"rouille",
"syslog",
"trust-dns-resolver",
"version-compare",
]
# Enables dist tests with external requirements
Expand Down
Loading