]> git.proxmox.com Git - rustc.git/blob - src/vendor/curl/ci/run.sh
New upstream version 1.19.0+dfsg1
[rustc.git] / src / vendor / curl / ci / run.sh
1 #!/bin/sh
2
3 set -ex
4
5 cargo test --target $TARGET --no-run
6 if [ -z "$NO_RUN" ]; then
7 cargo test --target $TARGET
8 cargo run --manifest-path systest/Cargo.toml --target $TARGET
9 cargo doc --no-deps
10 cargo doc --no-deps -p curl-sys
11 fi
12
13 if [ -n "$FEATURES" ]
14 then
15 cargo run --manifest-path systest/Cargo.toml --target $TARGET --features "$FEATURES"
16 fi