We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 011d5f2 commit cde381dCopy full SHA for cde381d
ci/Dockerfile
@@ -29,6 +29,14 @@ RUN \
29
test_bin=$(find target/debug/deps/ -name "ui*" -type f -perm -a=x); \
30
mv "${test_bin}" /output/unit_tests_ui;
31
32
+# Bake in debug information to debug deadlocks in production
33
+RUN mkdir .cargo
34
+RUN cat <<EOF >.cargo/config.toml
35
+[profile.release]
36
+debug = "full"
37
+split-debuginfo = "off"
38
+EOF
39
+
40
RUN \
41
cargo rustc --locked --release -- -C relocation-model=static; \
42
mv target/release/ui /output/ui;
0 commit comments