disable awslambda for WASI tests
All checks were successful
Generic zig build / build (push) Successful in 3m3s
All checks were successful
Generic zig build / build (push) Successful in 3m3s
This commit is contained in:
parent
e963ed068a
commit
c77502d90f
1
.github/workflows/build.yaml
vendored
1
.github/workflows/build.yaml
vendored
|
@ -9,6 +9,7 @@ env:
|
|||
ACTIONS_RUNTIME_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
ACTIONS_RUNTIME_URL: ${{ env.GITHUB_SERVER_URL }}/api/actions_pipeline/
|
||||
WASMTIME_BACKTRACE_DETAILS: 1
|
||||
WASMTIME_NEW_CLI: 0
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
@ -30,7 +30,8 @@ test {
|
|||
std.testing.refAllDecls(@This());
|
||||
std.testing.refAllDecls(@import("console.zig"));
|
||||
std.testing.refAllDecls(@import("standalone_server.zig"));
|
||||
std.testing.refAllDecls(@import("awslambda.zig"));
|
||||
if (@import("builtin").os.tag != .wasi)
|
||||
std.testing.refAllDecls(@import("awslambda.zig"));
|
||||
// By importing flexilib.zig, this breaks downstream any time someone
|
||||
// tries to build flexilib, because flexilib.zig becomes the root module,
|
||||
// then gets imported here again. It shouldn't be done unless doing
|
||||
|
|
Loading…
Reference in New Issue
Block a user