We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f95cb4b commit 0292629Copy full SHA for 0292629
.github/composite/godot-install/action.yml
@@ -51,7 +51,7 @@ runs:
51
fi
52
53
curl "$url" -Lo artifact.zip --retry 3
54
- unzip artifact.zip -d $RUNNER_DIR/godot_bin
+ unzip -q artifact.zip -d $RUNNER_DIR/godot_bin
55
shell: bash
56
57
- name: "Prepare Godot executable"
itest/rust/src/engine_tests/async_test.rs
@@ -160,8 +160,9 @@ fn signal_future_non_send_arg_panic() -> TaskHandle {
160
handle
161
}
162
163
+// FIXME test is flaky and occasionally breaks CI job `linux-features-experimental`. Should become deterministic, then un-skip.
164
#[cfg(feature = "experimental-threads")]
-#[itest(async)]
165
+#[itest(async, skip)]
166
fn signal_future_send_arg_no_panic() -> TaskHandle {
167
use crate::framework::ThreadCrosser;
168
0 commit comments