14
14
toolchain : nightly
15
15
- template : ci/azure-install-node.yml
16
16
- template : ci/azure-install-geckodriver.yml
17
- - template : ci/azure-install-sccache.yml
17
+ # Temporarily disable sccache because it is failing on CI.
18
+ # - template: ci/azure-install-sccache.yml
18
19
- script : cargo test
19
20
displayName : " Builds on native"
20
21
- script : cargo test --target wasm32-unknown-unknown
58
59
toolchain : nightly
59
60
- template : ci/azure-install-node.yml
60
61
- template : ci/azure-install-geckodriver.yml
61
- - template : ci/azure-install-sccache.yml
62
+ # Temporarily disable sccache because it is failing on CI.
63
+ # - template: ci/azure-install-sccache.yml
62
64
- script : cargo test --target wasm32-unknown-unknown
63
65
displayName : " wasm-bindgen test suite"
64
66
env :
@@ -80,14 +82,16 @@ jobs:
80
82
parameters :
81
83
toolchain : nightly
82
84
- template : ci/azure-install-node.yml
83
- - template : ci/azure-install-sccache.yml
85
+ # Temporarily disable sccache because it is failing on CI.
86
+ # - template: ci/azure-install-sccache.yml
84
87
- script : cargo test --target wasm32-unknown-unknown --features nightly --test wasm
85
88
86
89
- job : test_cli
87
90
displayName : " Run wasm-bindgen-cli crate tests"
88
91
steps :
89
92
- template : ci/azure-install-rust.yml
90
- - template : ci/azure-install-sccache.yml
93
+ # Temporarily disable sccache because it is failing on CI.
94
+ # - template: ci/azure-install-sccache.yml
91
95
- script : rustup target add wasm32-unknown-unknown
92
96
displayName : " install wasm target"
93
97
- script : cargo test -p wasm-bindgen-cli-support
@@ -104,7 +108,8 @@ jobs:
104
108
toolchain : nightly
105
109
- template : ci/azure-install-node.yml
106
110
- template : ci/azure-install-geckodriver.yml
107
- - template : ci/azure-install-sccache.yml
111
+ # Temporarily disable sccache because it is failing on CI.
112
+ # - template: ci/azure-install-sccache.yml
108
113
- script : cargo build --manifest-path crates/web-sys/Cargo.toml --target wasm32-unknown-unknown
109
114
- script : cargo build --manifest-path crates/web-sys/Cargo.toml --target wasm32-unknown-unknown --features Node
110
115
- script : cargo build --manifest-path crates/web-sys/Cargo.toml --target wasm32-unknown-unknown --features Element
@@ -120,7 +125,8 @@ jobs:
120
125
toolchain : nightly
121
126
- template : ci/azure-install-node.yml
122
127
- template : ci/azure-install-geckodriver.yml
123
- - template : ci/azure-install-sccache.yml
128
+ # Temporarily disable sccache because it is failing on CI.
129
+ # - template: ci/azure-install-sccache.yml
124
130
- script : cargo test -p js-sys --target wasm32-unknown-unknown
125
131
126
132
- job : test_webidl
@@ -131,7 +137,8 @@ jobs:
131
137
parameters :
132
138
toolchain : nightly
133
139
- template : ci/azure-install-node.yml
134
- # - template: ci/azure-install-sccache.yml
140
+ # Temporarily disable sccache because it is failing on CI.
141
+ # - template: ci/azure-install-sccache.yml
135
142
- script : cargo test -p wasm-bindgen-webidl
136
143
- script : cargo test -p webidl-tests --target wasm32-unknown-unknown
137
144
env :
@@ -145,19 +152,23 @@ jobs:
145
152
parameters :
146
153
toolchain : nightly
147
154
- template : ci/azure-install-node.yml
148
- - template : ci/azure-install-sccache.yml
155
+ # Temporarily disable sccache because it is failing on CI.
156
+ # - template: ci/azure-install-sccache.yml
149
157
- script : cargo test -p wasm-bindgen-macro
150
158
151
159
- job : test_wasm_interpreter
152
160
displayName : " Run wasm-bindgen-wasm-interpreter tests"
153
161
steps :
154
162
- template : ci/azure-install-rust.yml
155
- - template : ci/azure-install-sccache.yml
163
+ # Temporarily disable sccache because it is failing on CI.
164
+ # - template: ci/azure-install-sccache.yml
156
165
- script : |
157
166
git clone https://github.com/WebAssembly/wabt
158
167
mkdir -p wabt/build
159
168
cd wabt/build
160
- cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=off -DCMAKE_CXX_COMPILER_LAUNCHER=$RUSTC_WRAPPER
169
+ # Temporarily disable sccache because it is failing on CI.
170
+ # cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=off -DCMAKE_CXX_COMPILER_LAUNCHER=$RUSTC_WRAPPER
171
+ cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=off
161
172
cmake --build . -- -j$(nproc)
162
173
echo "##vso[task.prependpath]$PWD"
163
174
- script : cargo test -p wasm-bindgen-wasm-interpreter
@@ -166,7 +177,8 @@ jobs:
166
177
displayName : " Test TypeScript output of wasm-bindgen"
167
178
steps :
168
179
- template : ci/azure-install-rust.yml
169
- - template : ci/azure-install-sccache.yml
180
+ # Temporarily disable sccache because it is failing on CI.
181
+ # - template: ci/azure-install-sccache.yml
170
182
- template : ci/azure-install-node.yml
171
183
- script : cd crates/typescript-tests && ./run.sh
172
184
@@ -177,7 +189,8 @@ jobs:
177
189
# TODO: switch this back to `stable` when async/await is stable
178
190
parameters :
179
191
toolchain : nightly
180
- - template : ci/azure-install-sccache.yml
192
+ # Temporarily disable sccache because it is failing on CI.
193
+ # - template: ci/azure-install-sccache.yml
181
194
- template : ci/azure-install-wasm-pack.yml
182
195
- script : mv _package.json package.json && npm install && rm package.json
183
196
displayName : " run npm install"
@@ -199,7 +212,8 @@ jobs:
199
212
- template : ci/azure-install-rust.yml
200
213
parameters :
201
214
toolchain : nightly-2019-08-27
202
- - template : ci/azure-install-sccache.yml
215
+ # Temporarily disable sccache because it is failing on CI.
216
+ # - template: ci/azure-install-sccache.yml
203
217
- script : rustup component add rust-src
204
218
displayName : " install rust-src"
205
219
- script : cargo install xargo
@@ -222,7 +236,8 @@ jobs:
222
236
# TODO: switch this back to `stable` when async/await is stable
223
237
parameters :
224
238
toolchain : nightly
225
- - template : ci/azure-install-sccache.yml
239
+ # Temporarily disable sccache because it is failing on CI.
240
+ # - template: ci/azure-install-sccache.yml
226
241
- template : ci/azure-install-wasm-pack.yml
227
242
- script : wasm-pack build --target web benchmarks
228
243
displayName : " build benchmarks"
@@ -237,7 +252,8 @@ jobs:
237
252
displayName : " Dist Linux binary"
238
253
steps :
239
254
- template : ci/azure-install-rust.yml
240
- - template : ci/azure-install-sccache.yml
255
+ # Temporarily disable sccache because it is failing on CI.
256
+ # - template: ci/azure-install-sccache.yml
241
257
- script : rustup target add x86_64-unknown-linux-musl
242
258
- script : |
243
259
sudo apt update -y
@@ -260,7 +276,8 @@ jobs:
260
276
vmImage : macOS-10.13
261
277
steps :
262
278
- template : ci/azure-install-rust.yml
263
- - template : ci/azure-install-sccache.yml
279
+ # Temporarily disable sccache because it is failing on CI.
280
+ # - template: ci/azure-install-sccache.yml
264
281
- script : cargo build --manifest-path crates/cli/Cargo.toml --release
265
282
env :
266
283
MACOSX_DEPLOYMENT_TARGET : 10.7
@@ -274,15 +291,17 @@ jobs:
274
291
vmImage : vs2017-win2016
275
292
steps :
276
293
- template : ci/azure-install-rust.yml
277
- - template : ci/azure-install-sccache.yml
294
+ # Temporarily disable sccache because it is failing on CI.
295
+ # - template: ci/azure-install-sccache.yml
278
296
- script : cargo build --manifest-path crates/cli/Cargo.toml --release
279
297
env :
280
298
RUSTFLAGS : -Ctarget-feature=+crt-static
281
299
- template : ci/azure-create-tarball.yml
282
300
parameters :
283
301
name : dist_windows
284
- - script : " %RUSTC_WRAPPER% -s"
285
- - script : cat sccache.log
302
+ # Temporarily disable sccache because it is failing on CI.
303
+ # - script: "%RUSTC_WRAPPER% -s"
304
+ # - script: cat sccache.log
286
305
287
306
- job : doc_book
288
307
displayName : " Doc - build the book"
@@ -308,7 +327,8 @@ jobs:
308
327
# Install rustfmt so we can format the web-sys bindings
309
328
- script : rustup component add rustfmt
310
329
displayName : " Install rustfmt"
311
- - template : ci/azure-install-sccache.yml
330
+ # Temporarily disable sccache because it is failing on CI.
331
+ # - template: ci/azure-install-sccache.yml
312
332
- script : cargo doc --no-deps --features 'nightly serde-serialize'
313
333
displayName : " Document wasm-bindgen"
314
334
- script : cargo doc --no-deps --manifest-path crates/js-sys/Cargo.toml
0 commit comments