Skip to content

Commit a2738bb

Browse files
committed
CI: Temporarily disable sccache usage
It is failing to install / setup on CI.
1 parent c74e2ff commit a2738bb

File tree

1 file changed

+36
-18
lines changed

1 file changed

+36
-18
lines changed

azure-pipelines.yml

Lines changed: 36 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
toolchain: nightly
1515
- template: ci/azure-install-node.yml
1616
- 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
1819
- script: cargo test
1920
displayName: "Builds on native"
2021
- script: cargo test --target wasm32-unknown-unknown
@@ -58,7 +59,8 @@ jobs:
5859
toolchain: nightly
5960
- template: ci/azure-install-node.yml
6061
- 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
6264
- script: cargo test --target wasm32-unknown-unknown
6365
displayName: "wasm-bindgen test suite"
6466
env:
@@ -80,14 +82,16 @@ jobs:
8082
parameters:
8183
toolchain: nightly
8284
- 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
8487
- script: cargo test --target wasm32-unknown-unknown --features nightly --test wasm
8588

8689
- job: test_cli
8790
displayName: "Run wasm-bindgen-cli crate tests"
8891
steps:
8992
- 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
9195
- script: rustup target add wasm32-unknown-unknown
9296
displayName: "install wasm target"
9397
- script: cargo test -p wasm-bindgen-cli-support
@@ -104,7 +108,8 @@ jobs:
104108
toolchain: nightly
105109
- template: ci/azure-install-node.yml
106110
- 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
108113
- script: cargo build --manifest-path crates/web-sys/Cargo.toml --target wasm32-unknown-unknown
109114
- script: cargo build --manifest-path crates/web-sys/Cargo.toml --target wasm32-unknown-unknown --features Node
110115
- script: cargo build --manifest-path crates/web-sys/Cargo.toml --target wasm32-unknown-unknown --features Element
@@ -120,7 +125,8 @@ jobs:
120125
toolchain: nightly
121126
- template: ci/azure-install-node.yml
122127
- 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
124130
- script: cargo test -p js-sys --target wasm32-unknown-unknown
125131

126132
- job: test_webidl
@@ -131,7 +137,8 @@ jobs:
131137
parameters:
132138
toolchain: nightly
133139
- 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
135142
- script: cargo test -p wasm-bindgen-webidl
136143
- script: cargo test -p webidl-tests --target wasm32-unknown-unknown
137144
env:
@@ -145,14 +152,16 @@ jobs:
145152
parameters:
146153
toolchain: nightly
147154
- 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
149157
- script: cargo test -p wasm-bindgen-macro
150158

151159
- job: test_wasm_interpreter
152160
displayName: "Run wasm-bindgen-wasm-interpreter tests"
153161
steps:
154162
- 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
156165
- script: |
157166
git clone https://github.com/WebAssembly/wabt
158167
mkdir -p wabt/build
@@ -166,7 +175,8 @@ jobs:
166175
displayName: "Test TypeScript output of wasm-bindgen"
167176
steps:
168177
- template: ci/azure-install-rust.yml
169-
- template: ci/azure-install-sccache.yml
178+
# Temporarily disable sccache because it is failing on CI.
179+
# - template: ci/azure-install-sccache.yml
170180
- template: ci/azure-install-node.yml
171181
- script: cd crates/typescript-tests && ./run.sh
172182

@@ -177,7 +187,8 @@ jobs:
177187
# TODO: switch this back to `stable` when async/await is stable
178188
parameters:
179189
toolchain: nightly
180-
- template: ci/azure-install-sccache.yml
190+
# Temporarily disable sccache because it is failing on CI.
191+
# - template: ci/azure-install-sccache.yml
181192
- template: ci/azure-install-wasm-pack.yml
182193
- script: mv _package.json package.json && npm install && rm package.json
183194
displayName: "run npm install"
@@ -199,7 +210,8 @@ jobs:
199210
- template: ci/azure-install-rust.yml
200211
parameters:
201212
toolchain: nightly-2019-08-27
202-
- template: ci/azure-install-sccache.yml
213+
# Temporarily disable sccache because it is failing on CI.
214+
# - template: ci/azure-install-sccache.yml
203215
- script: rustup component add rust-src
204216
displayName: "install rust-src"
205217
- script: cargo install xargo
@@ -222,7 +234,8 @@ jobs:
222234
# TODO: switch this back to `stable` when async/await is stable
223235
parameters:
224236
toolchain: nightly
225-
- template: ci/azure-install-sccache.yml
237+
# Temporarily disable sccache because it is failing on CI.
238+
# - template: ci/azure-install-sccache.yml
226239
- template: ci/azure-install-wasm-pack.yml
227240
- script: wasm-pack build --target web benchmarks
228241
displayName: "build benchmarks"
@@ -237,7 +250,8 @@ jobs:
237250
displayName: "Dist Linux binary"
238251
steps:
239252
- template: ci/azure-install-rust.yml
240-
- template: ci/azure-install-sccache.yml
253+
# Temporarily disable sccache because it is failing on CI.
254+
# - template: ci/azure-install-sccache.yml
241255
- script: rustup target add x86_64-unknown-linux-musl
242256
- script: |
243257
sudo apt update -y
@@ -260,7 +274,8 @@ jobs:
260274
vmImage: macOS-10.13
261275
steps:
262276
- template: ci/azure-install-rust.yml
263-
- template: ci/azure-install-sccache.yml
277+
# Temporarily disable sccache because it is failing on CI.
278+
# - template: ci/azure-install-sccache.yml
264279
- script: cargo build --manifest-path crates/cli/Cargo.toml --release
265280
env:
266281
MACOSX_DEPLOYMENT_TARGET: 10.7
@@ -274,15 +289,17 @@ jobs:
274289
vmImage: vs2017-win2016
275290
steps:
276291
- template: ci/azure-install-rust.yml
277-
- template: ci/azure-install-sccache.yml
292+
# Temporarily disable sccache because it is failing on CI.
293+
# - template: ci/azure-install-sccache.yml
278294
- script: cargo build --manifest-path crates/cli/Cargo.toml --release
279295
env:
280296
RUSTFLAGS: -Ctarget-feature=+crt-static
281297
- template: ci/azure-create-tarball.yml
282298
parameters:
283299
name: dist_windows
284300
- script: "%RUSTC_WRAPPER% -s"
285-
- script: cat sccache.log
301+
# Temporarily disable sccache because it is failing on CI.
302+
# - script: cat sccache.log
286303

287304
- job: doc_book
288305
displayName: "Doc - build the book"
@@ -308,7 +325,8 @@ jobs:
308325
# Install rustfmt so we can format the web-sys bindings
309326
- script: rustup component add rustfmt
310327
displayName: "Install rustfmt"
311-
- template: ci/azure-install-sccache.yml
328+
# Temporarily disable sccache because it is failing on CI.
329+
# - template: ci/azure-install-sccache.yml
312330
- script: cargo doc --no-deps --features 'nightly serde-serialize'
313331
displayName: "Document wasm-bindgen"
314332
- script: cargo doc --no-deps --manifest-path crates/js-sys/Cargo.toml

0 commit comments

Comments
 (0)