File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 91
91
- name : Configure node
92
92
uses : actions/setup-node@v4
93
93
with :
94
- node-version : 18.14
94
+ node-version : 22.2
95
95
- name : Get pnpm version from package.json
96
96
id : pnpm-version
97
97
run : ' echo "pnpm_version=$(node -p '' require(`./ui/frontend/package.json`).engines.pnpm'' )" >> $GITHUB_OUTPUT
Original file line number Diff line number Diff line change 29
29
test_bin=$(find target/debug/deps/ -name "ui*" -type f -perm -a=x); \
30
30
mv "${test_bin}" /output/unit_tests_ui;
31
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
+
32
40
RUN \
33
41
cargo rustc --locked --release -- -C relocation-model=static; \
34
42
mv target/release/ui /output/ui;
You can’t perform that action at this time.
0 commit comments