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 fbd1c70 commit 1b33b6bCopy full SHA for 1b33b6b
.github/workflows/ci.yml
@@ -40,6 +40,12 @@ jobs:
40
41
- name: just check
42
run: just check
43
+ env:
44
+ # Disable incremental compilation to avoid overhead.
45
+ CARGO_INCREMENTAL: "0"
46
+ # Disable full debug symbol generation to speed up CI build
47
+ # "1" means line tables only, which is useful for panic tracebacks.
48
+ CARGO_PROFILE_DEV_DEBUG: "1"
49
50
- name: upload docs
51
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
0 commit comments