]> git.proxmox.com Git - cargo.git/blob - azure-pipelines.yml
Auto merge of #7350 - alexcrichton:mock-std, r=ehuss
[cargo.git] / azure-pipelines.yml
1 trigger:
2 branches:
3 include:
4 - '*'
5 exclude:
6 - master
7 pr:
8 - master
9
10 jobs:
11 - job: Linux
12 pool:
13 vmImage: ubuntu-16.04
14 steps:
15 - template: ci/azure-test-all.yml
16 strategy:
17 matrix:
18 stable:
19 TOOLCHAIN: stable
20 beta:
21 TOOLCHAIN: beta
22 nightly:
23 TOOLCHAIN: nightly
24 variables:
25 OTHER_TARGET: i686-unknown-linux-gnu
26
27 - job: macOS
28 pool:
29 vmImage: macos-10.13
30 steps:
31 - template: ci/azure-test-all.yml
32 variables:
33 TOOLCHAIN: stable
34 OTHER_TARGET: i686-apple-darwin
35
36 - job: Windows
37 pool:
38 vmImage: windows-2019
39 steps:
40 - template: ci/azure-test-all.yml
41 strategy:
42 matrix:
43 x86_64-msvc:
44 TOOLCHAIN: stable-x86_64-pc-windows-msvc
45 OTHER_TARGET: i686-pc-windows-msvc
46
47 - job: rustfmt
48 pool:
49 vmImage: ubuntu-16.04
50 steps:
51 - template: ci/azure-install-rust.yml
52 - bash: rustup component add rustfmt
53 displayName: "Install rustfmt"
54 - bash: cargo fmt --all -- --check
55 displayName: "Check rustfmt (cargo)"
56 - bash: cd crates/cargo-test-macro && cargo fmt --all -- --check
57 displayName: "Check rustfmt (cargo-test-macro)"
58 - bash: cd crates/cargo-test-support && cargo fmt --all -- --check
59 displayName: "Check rustfmt (cargo-test-support)"
60 - bash: cd crates/crates-io && cargo fmt --all -- --check
61 displayName: "Check rustfmt (crates-io)"
62 - bash: cd crates/resolver-tests && cargo fmt --all -- --check
63 displayName: "Check rustfmt (resolver-tests)"
64 variables:
65 TOOLCHAIN: stable
66
67 - job: resolver
68 pool:
69 vmImage: ubuntu-16.04
70 steps:
71 - template: ci/azure-install-rust.yml
72 - bash: cargo test --manifest-path crates/resolver-tests/Cargo.toml
73 displayName: "Resolver tests"
74 variables:
75 TOOLCHAIN: stable
76
77 - job: build_std
78 pool:
79 vmImage: ubuntu-16.04
80 steps:
81 - template: ci/azure-install-rust.yml
82 - bash: rustup component add rust-src
83 displayName: "Install rust-src"
84 - bash: cargo build
85 - bash: cargo test --test build-std
86 displayName: "tests"
87 variables:
88 TOOLCHAIN: nightly
89 CARGO_RUN_BUILD_STD_TESTS: 1
90
91 - job: docs
92 pool:
93 vmImage: ubuntu-16.04
94 steps:
95 - template: ci/azure-install-rust.yml
96 - bash: |
97 set -e
98 mkdir mdbook
99 curl -Lf https://github.com/rust-lang-nursery/mdBook/releases/download/v0.3.1/mdbook-v0.3.1-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook
100 echo "##vso[task.prependpath]`pwd`/mdbook"
101 displayName: "Install mdbook"
102 - bash: cargo doc --no-deps
103 displayName: "Build documentation"
104 - bash: cd src/doc && mdbook build --dest-dir ../../target/doc
105 displayName: "Build mdbook documentation"
106 variables:
107 TOOLCHAIN: stable