Skip to content

Commit 1b33b6b

Browse files
committed
chore: make rustc in CI faster
1 parent fbd1c70 commit 1b33b6b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ jobs:
4040

4141
- name: just check
4242
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"
4349

4450
- name: upload docs
4551
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2

0 commit comments

Comments
 (0)