Skip to content

Commit 3dd667b

Browse files
committed
Disable BF Cache for Tests
1 parent 3618045 commit 3dd667b

4 files changed

Lines changed: 5 additions & 2 deletions

File tree

.config/topic.dic

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
47
1+
48
22
allocator
33
API
44
APIs
@@ -42,6 +42,7 @@ Wasm64
4242
Wasmtime
4343
WAT
4444
WebDriver/S
45+
WebKit
4546
whitelist
4647
wishlist
4748
<

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ jobs:
262262
matrix:
263263
runner:
264264
- { os: ubuntu-latest, name: linux, runners: all }
265-
- { os: macos-latest, name: mac-os, runners: safari-driver, description: "- Safari" }
265+
# - { os: macos-latest, name: mac-os, runners: safari-driver, description: "- Safari" }
266266
target:
267267
- { name: wasm32, target: wasm32-unknown-unknown, install: true, description: Wasm32 }
268268
- {

TODO.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ This is a list of upstream issues that could make our lives significantly easier
137137
the CI, significantly increasing our build and test times. [`rust-lang/wg-cargo-std-aware#20`]
138138
- Ask LLVM to remove the requirement for a `__linear_memory` declaration on Wasm64.
139139
- Ability to specify stable toolchain with nightly Rustfmt: [`rust-lang/rustup#4636`].
140+
- Safari WebDriver leaks memory: [WebKit Bug](https://bugs.webkit.org/show_bug.cgi?id=263105).
140141

141142
[`llvm/llvm-project#136594`]: https://github.com/llvm/llvm-project/issues/136594
142143
[`rust-lang/rust#136382`]: https://github.com/rust-lang/rust/issues/136382

host/runner/src/server.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,7 @@ fn response(content_type: &'static str, body: impl Into<Body>) -> Response {
360360
"Cross-Origin-Embedder-Policy",
361361
HeaderValue::from_static("require-corp"),
362362
);
363+
headers.insert("Cache-Control", HeaderValue::from_static("no-store"));
363364

364365
response
365366
}

0 commit comments

Comments
 (0)