File tree Expand file tree Collapse file tree 1 file changed +38
-3
lines changed Expand file tree Collapse file tree 1 file changed +38
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,42 @@ trigger:
44 - master
55
66jobs :
7- - job : Test
7+ - job : Test_Windows
8+ strategy :
9+ matrix :
10+ x86 :
11+ target : i686-pc-windows-msvc
12+ x64 :
13+ target : x86_64-pc-windows-msvc
14+ x64-gnu :
15+ target : x86_64-pc-windows-gnu
16+ pool :
17+ vmImage : windows-latest
18+
19+ steps :
20+ - script : |
21+ rustup toolchain install nightly
22+ rustup +nightly target install $(target)
23+ cargo +nightly test --all-features --target $(target) -Z doctest-xcompile
24+ displayName: Test
25+
26+ - job : Test_Ubuntu
27+ strategy :
28+ matrix :
29+ focal :
30+ image : ubuntu-20.04
31+ jammy :
32+ image : ubuntu-22.04
33+ pool :
34+ vmImage : $(image)
35+
36+ steps :
37+ - script : |
38+ rustup toolchain install nightly
39+ cargo +nightly test --all-features
40+ displayName: Test
41+
42+ - job : Doc
843 strategy :
944 matrix :
1045 windows :
1752 steps :
1853 - script : |
1954 rustup toolchain install nightly
20- cargo +nightly test --all-features
21- displayName: Test
55+ cargo +nightly doc --all-features --no-deps
56+ displayName: Build docs
You can’t perform that action at this time.
0 commit comments