We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c63e321 commit d1bf829Copy full SHA for d1bf829
ci/run.bash
@@ -7,10 +7,21 @@ export RUST_BACKTRACE=1
7
rustc -vV
8
cargo -vV
9
10
-FEATURES=()
+
11
+FEATURES=('--no-default-features' '--features' 'curl-backend,reqwest-backend,reqwest-default-tls')
12
case "$(uname -s)" in
13
*NT* ) ;; # Windows NT
- * ) FEATURES=('--features' 'vendored-openssl') ;;
14
+ * ) FEATURES+=('--features' 'vendored-openssl') ;;
15
+esac
16
17
+case "$TARGET" in
18
+ # these platforms aren't supported by ring:
19
+ powerpc* ) ;;
20
+ mips* ) ;;
21
+ riscv* ) ;;
22
+ s390x* ) ;;
23
+ # default case, build with rustls enabled
24
+ * ) FEATURES+=('--features' 'reqwest-rustls-tls') ;;
25
esac
26
27
# rustc only supports armv7: https://doc.rust-lang.org/nightly/rustc/platform-support.html
0 commit comments