-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI silently swallows errors and tests forget to check return values #9932
Comments
alexcrichton
added a commit
to alexcrichton/wasmtime
that referenced
this issue
Jan 7, 2025
* Replace hard tabs in file with ` ` * Move building of example executables to build-time instead of configure-time * Move examples to being built as part of the "all" target * Use a CMake shorthand for adding tests on executables generated Closes bytecodealliance#9932 Closes bytecodealliance#9933
alexcrichton
added a commit
to alexcrichton/wasmtime
that referenced
this issue
Jan 7, 2025
* Replace hard tabs in file with ` ` * Move building of example executables to build-time instead of configure-time * Move examples to being built as part of the "all" target * Use a CMake shorthand for adding tests on executables generated Closes bytecodealliance#9932 Closes bytecodealliance#9933
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here is a simple example that has blocked my PR #9788 for weeks.
In this PR, I need to use
wasm32-wasip2
target, which was not added herewasmtime/.github/actions/install-rust/action.yml
Line 67 in fc7ef8d
which is used by CI.
My PR added L69 to compile an example with
wasm32-wasip2
target like below:This
create_rust_wasm(wasi wasm32-wasip2)
should have failed CI but not, because it didn't checked the return code of the command that was run.The command should have returned something like
This error was not checked, so a test later failed with misleading error messages, because this step didn't compiled a required manifest file (
wasi.wasm
).I don't know if this case is a special case or there are loopholes in CI in which CMake is used but it does not checked a return code of a command that is run.
The text was updated successfully, but these errors were encountered: