File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 58
58
COMMIT_MESSAGE : ${{ github.event.head_commit.message }}
59
59
run : |
60
60
cd src/ci/citool
61
- cargo test
62
- cargo run calculate-job-matrix >> $GITHUB_OUTPUT
61
+ CARGO_INCREMENTAL=0 cargo test
62
+ CARGO_INCREMENTAL=0 cargo run calculate-job-matrix >> $GITHUB_OUTPUT
63
63
id : jobs
64
64
job :
65
65
name : ${{ matrix.full_name }}
@@ -187,7 +187,7 @@ jobs:
187
187
- name : build citool
188
188
run : |
189
189
cd src/ci/citool
190
- CARGO_TARGET_DIR=../../../build/citool cargo build
190
+ CARGO_INCREMENTAL=0 CARGO_TARGET_DIR=../../../build/citool cargo build
191
191
192
192
- name : run the build
193
193
# Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
Original file line number Diff line number Diff line change @@ -19,3 +19,7 @@ insta = "1"
19
19
# If this is omitted, cargo will look for a workspace elsewhere.
20
20
# We want to avoid this, since citool is independent of the other crates.
21
21
[workspace ]
22
+
23
+ # Make compilation faster
24
+ [profile .dev ]
25
+ debug = 0
You can’t perform that action at this time.
0 commit comments