mirror of https://github.com/lukechilds/cc-rs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
758 B
18 lines
758 B
6 years ago
|
steps:
|
||
|
- template: azure-install-rust.yml
|
||
|
- bash: rustup target add $TARGET
|
||
|
displayName: Install Rust target
|
||
|
|
||
|
- script: cargo build
|
||
|
displayName: "Normal build"
|
||
|
- bash: cargo test $NO_RUN -- --test-threads 1
|
||
|
displayName: "Crate tests"
|
||
|
- bash: cargo test $NO_RUN --features parallel -- --test-threads 1
|
||
|
displayName: "Crate tests (parallel)"
|
||
|
- bash: cargo test $NO_RUN --manifest-path cc-test/Cargo.toml --target $TARGET
|
||
|
displayName: "cc-test tests"
|
||
|
- bash: cargo test $NO_RUN --manifest-path cc-test/Cargo.toml --target $TARGET --features parallel
|
||
|
displayName: "cc-test tests (parallel)"
|
||
|
- bash: cargo test $NO_RUN --manifest-path cc-test/Cargo.toml --target $TARGET --release
|
||
|
displayName: "cc-test tests (release)"
|