Skip to content

Commit 59288a7

Browse files
authored
dedup env: CARGO_INCREMENTAL: 0 (#11360)
1 parent 706d302 commit 59288a7

3 files changed

Lines changed: 5 additions & 15 deletions

File tree

.github/workflows/CICD.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ env:
1212
PROJECT_DESC: "Core universal (cross-platform) utilities"
1313
PROJECT_AUTH: "uutils"
1414
RUST_MIN_SRV: "1.88.0"
15+
CARGO_INCREMENTAL: "0"
1516
# * style job configuration
1617
STYLE_FAIL_ON_FAULT: true ## (bool) fail the build if a style job contains a fault (error or warning); may be overridden on a per-job basis
1718

@@ -93,8 +94,6 @@ jobs:
9394
doc_warnings:
9495
name: Documentation/warnings
9596
runs-on: ${{ matrix.job.os }}
96-
env:
97-
CARGO_INCREMENTAL: 0
9897
strategy:
9998
fail-fast: false
10099
matrix:
@@ -164,8 +163,6 @@ jobs:
164163
min_version:
165164
name: MinRustV # Minimum supported rust version (aka, MinSRV or MSRV)
166165
runs-on: ${{ matrix.job.os }}
167-
env:
168-
CARGO_INCREMENTAL: 0
169166
strategy:
170167
matrix:
171168
job:
@@ -275,8 +272,6 @@ jobs:
275272
needs: [ min_version, deps ]
276273
runs-on: ${{ matrix.job.os }}
277274
timeout-minutes: 90
278-
env:
279-
CARGO_INCREMENTAL: 0
280275
strategy:
281276
fail-fast: false
282277
matrix:
@@ -320,8 +315,6 @@ jobs:
320315
needs: [ min_version, deps ]
321316
runs-on: ${{ matrix.job.os }}
322317
timeout-minutes: 90
323-
env:
324-
CARGO_INCREMENTAL: 0
325318
strategy:
326319
fail-fast: false
327320
matrix:
@@ -370,7 +363,6 @@ jobs:
370363
timeout-minutes: 90
371364
env:
372365
DOCKER_OPTS: '--volume /etc/passwd:/etc/passwd --volume /etc/group:/etc/group'
373-
CARGO_INCREMENTAL: 0
374366
strategy:
375367
fail-fast: false
376368
matrix:
@@ -703,7 +695,6 @@ jobs:
703695
runs-on: ${{ matrix.job.os }}
704696
timeout-minutes: 90
705697
env:
706-
CARGO_INCREMENTAL: 0
707698
RUSTC_BOOTSTRAP: 1
708699
strategy:
709700
fail-fast: false

.github/workflows/code-quality.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- '*'
1111

1212
env:
13+
CARGO_INCREMENTAL: "0"
1314
# * style job configuration
1415
STYLE_FAIL_ON_FAULT: true ## (bool) fail the build if a style job contains a fault (error or warning); may be overridden on a per-job basis
1516

@@ -66,8 +67,6 @@ jobs:
6667
style_lint:
6768
name: Style/lint
6869
runs-on: ${{ matrix.job.os }}
69-
env:
70-
CARGO_INCREMENTAL: 0
7170
strategy:
7271
fail-fast: false
7372
matrix:

.github/workflows/fuzzing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name: Fuzzing
33
# spell-checker:ignore (people) dtolnay Swatinem taiki-e
44
# spell-checker:ignore (misc) fuzzer
55

6+
env:
7+
CARGO_INCREMENTAL: "0"
8+
69
on:
710
pull_request:
811
push:
@@ -20,8 +23,6 @@ concurrency:
2023
jobs:
2124
uufuzz-examples:
2225
name: Build and test uufuzz examples
23-
env:
24-
CARGO_INCREMENTAL: 0
2526
runs-on: ubuntu-latest
2627
steps:
2728
- uses: actions/checkout@v6
@@ -75,7 +76,6 @@ jobs:
7576
timeout-minutes: 5
7677
env:
7778
RUN_FOR: 60
78-
CARGO_INCREMENTAL: 0
7979
strategy:
8080
matrix:
8181
test-target:

0 commit comments

Comments
 (0)