Update rust.yml

This commit is contained in:
dante
2025-06-10 21:11:49 +01:00
parent 2479b377dd
commit d94c41d301

View File

@@ -410,7 +410,22 @@ jobs:
run: rustup component add rust-src --toolchain nightly-2025-02-17-x86_64-unknown-linux-gnu
- name: Create webdriver.json to disable timeouts
run: |
echo '{ "goog:chromeOptions": { "args": [ "disable-timeouts-for-profiling" ] } }' > webdriver.json
cat > webdriver.json << 'EOF'
{
"goog:chromeOptions": {
"args": [
"--disable-timeouts-for-profiling",
"--disable-dev-shm-usage",
"--no-sandbox"
]
},
"timeouts": {
"implicit": 0,
"pageLoad": 300000,
"script": 300000
}
}
EOF
- name: Run wasm verifier tests
# on mac:
# AR=/opt/homebrew/opt/llvm/bin/llvm-ar CC=/opt/homebrew/opt/llvm/bin/clang wasm-pack test --firefox --headless -- -Z build-std="panic_abort,std" --features web