Skip to content

Commit ca03cf1

Browse files
committed
Try to fix Windows
1 parent c880d1c commit ca03cf1

File tree

2 files changed

+66
-66
lines changed

2 files changed

+66
-66
lines changed

azure-pipelines.yml

Lines changed: 65 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -2,67 +2,67 @@ trigger:
22
- master
33

44
jobs:
5-
- job: Linux
6-
pool:
7-
vmImage: ubuntu-16.04
8-
steps:
9-
- template: ci/azure-steps.yml
10-
strategy:
11-
matrix:
12-
aarch64:
13-
TARGET: aarch64-unknown-linux-gnu
14-
# arm:
15-
# TARGET: arm-unknown-linux-gnueabi
16-
# armhf:
17-
# TARGET: arm-unknown-linux-gnueabihf
18-
# i586:
19-
# TARGET: i586-unknown-linux-gnu
20-
# i686:
21-
# TARGET: i686-unknown-linux-gnu
22-
# mips:
23-
# TARGET: mips-unknown-linux-gnu
24-
# mips64:
25-
# TARGET: mips64-unknown-linux-gnuabi64
26-
# mips64el:
27-
# TARGET: mips64el-unknown-linux-gnuabi64
28-
# mipsel:
29-
# TARGET: mipsel-unknown-linux-gnu
30-
# powerpc:
31-
# TARGET: powerpc-unknown-linux-gnu
32-
# powerpc64:
33-
# TARGET: powerpc64-unknown-linux-gnu
34-
# powerpc64le:
35-
# TARGET: powerpc64le-unknown-linux-gnu
36-
thumbv6m:
37-
TARGET: thumbv6m-linux-eabi
38-
XARGO: 1
39-
thumbv7em:
40-
TARGET: thumbv7em-linux-eabi
41-
XARGO: 1
42-
thumbv7emhf:
43-
TARGET: thumbv7em-linux-eabihf
44-
XARGO: 1
45-
thumbv7m:
46-
TARGET: thumbv7m-linux-eabi
47-
XARGO: 1
48-
wasm32:
49-
TARGET: wasm32-unknown-unknown
50-
ONLY_BUILD: 1
51-
x86_64:
52-
TARGET: x86_64-unknown-linux-gnu
53-
54-
- job: macOS
55-
pool:
56-
vmImage: macos-10.13
57-
steps:
58-
- template: ci/azure-steps.yml
59-
strategy:
60-
matrix:
61-
x86_64:
62-
TARGET: x86_64-apple-darwin
63-
# i686:
64-
# TARGET: i686-apple-darwin
65-
5+
# - job: Linux
6+
# pool:
7+
# vmImage: ubuntu-16.04
8+
# steps:
9+
# - template: ci/azure-steps.yml
10+
# strategy:
11+
# matrix:
12+
# aarch64:
13+
# TARGET: aarch64-unknown-linux-gnu
14+
# arm:
15+
# TARGET: arm-unknown-linux-gnueabi
16+
# armhf:
17+
# TARGET: arm-unknown-linux-gnueabihf
18+
# i586:
19+
# TARGET: i586-unknown-linux-gnu
20+
# i686:
21+
# TARGET: i686-unknown-linux-gnu
22+
# mips:
23+
# TARGET: mips-unknown-linux-gnu
24+
# mips64:
25+
# TARGET: mips64-unknown-linux-gnuabi64
26+
# mips64el:
27+
# TARGET: mips64el-unknown-linux-gnuabi64
28+
# mipsel:
29+
# TARGET: mipsel-unknown-linux-gnu
30+
# powerpc:
31+
# TARGET: powerpc-unknown-linux-gnu
32+
# powerpc64:
33+
# TARGET: powerpc64-unknown-linux-gnu
34+
# powerpc64le:
35+
# TARGET: powerpc64le-unknown-linux-gnu
36+
# thumbv6m:
37+
# TARGET: thumbv6m-linux-eabi
38+
# XARGO: 1
39+
# thumbv7em:
40+
# TARGET: thumbv7em-linux-eabi
41+
# XARGO: 1
42+
# thumbv7emhf:
43+
# TARGET: thumbv7em-linux-eabihf
44+
# XARGO: 1
45+
# thumbv7m:
46+
# TARGET: thumbv7m-linux-eabi
47+
# XARGO: 1
48+
# wasm32:
49+
# TARGET: wasm32-unknown-unknown
50+
# ONLY_BUILD: 1
51+
# x86_64:
52+
# TARGET: x86_64-unknown-linux-gnu
53+
#
54+
# - job: macOS
55+
# pool:
56+
# vmImage: macos-10.13
57+
# steps:
58+
# - template: ci/azure-steps.yml
59+
# strategy:
60+
# matrix:
61+
# x86_64:
62+
# TARGET: x86_64-apple-darwin
63+
# i686:
64+
# TARGET: i686-apple-darwin
65+
#
6666
- job: Windows
6767
pool:
6868
vmImage: 'vs2017-win2016'
@@ -72,9 +72,9 @@ jobs:
7272
matrix:
7373
i686-msvc:
7474
TARGET: i686-pc-windows-msvc
75-
# x86_64-msvc:
76-
# TARGET: x86_64-pc-windows-msvc
77-
# i686-gnu:
78-
# TARGET: i686-pc-windows-gnu
75+
x86_64-msvc:
76+
TARGET: x86_64-pc-windows-msvc
77+
i686-gnu:
78+
TARGET: i686-pc-windows-gnu
7979
x86_64-gnu:
8080
TARGET: x86_64-pc-windows-gnu

ci/azure-install-rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ steps:
1313
1414
- script: |
1515
curl -sSf -o rustup-init.exe https://win.rustup.rs
16-
rustup-init.exe -y --default-toolchain %TOOLCHAIN%
16+
rustup-init.exe -y --default-toolchain %TOOLCHAIN%-%TARGET%
1717
echo ##vso[task.prependpath]%USERPROFILE%\.cargo\bin
1818
displayName: Install rust
1919
condition: eq( variables['Agent.OS'], 'Windows_NT' )

0 commit comments

Comments
 (0)