We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8c5943 commit 6752df6Copy full SHA for 6752df6
.github/workflows/ci.yml
@@ -52,7 +52,8 @@ jobs:
52
with:
53
swift-version: "wasm-5.9.2-RELEASE"
54
- name: Build tests
55
- run: swift build --triple wasm32-unknown-wasi --build-tests
+ # Extend the stack size to avoid stack overflow in the test suites
56
+ run: swift build --triple wasm32-unknown-wasi --build-tests -Xlinker -z -Xlinker stack-size=$((1024 * 1024))
57
- name: Run tests
58
run: wasmtime .build/debug/swift-custom-dumpPackageTests.wasm
59
0 commit comments