aboutsummaryrefslogtreecommitdiff
path: root/cc/ci/azure-steps.yml
diff options
context:
space:
mode:
Diffstat (limited to 'cc/ci/azure-steps.yml')
-rw-r--r--cc/ci/azure-steps.yml21
1 files changed, 0 insertions, 21 deletions
diff --git a/cc/ci/azure-steps.yml b/cc/ci/azure-steps.yml
deleted file mode 100644
index c240ed0..0000000
--- a/cc/ci/azure-steps.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-steps:
- - template: azure-install-rust.yml
- - bash: rustup target add $TARGET
- displayName: Install Rust target
-
- - bash: sudo apt-get install g++-multilib
- condition: eq( variables['Agent.OS'], 'Linux' )
- displayName: Install g++-multilib
-
- - 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)"