Skip to content

Commit e3e1d66

Browse files
committed
ci: remove unneeded cleaning steps
1 parent 89ee5bd commit e3e1d66

File tree

3 files changed

+8
-30
lines changed

3 files changed

+8
-30
lines changed

.github/workflows/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
toolchain: [stable, nightly]
15+
toolchain: [nightly, stable]
1616

1717
steps:
1818
- id: checkout

.github/workflows/e2e.yaml

+1-6
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
toolchain: [stable, nightly]
20+
toolchain: [nightly, stable]
2121

2222
steps:
2323
- id: checkout
@@ -34,11 +34,6 @@ jobs:
3434
name: Enable Job Cache
3535
uses: Swatinem/rust-cache@v2
3636

37-
# Temporary Cleaning to avoid Rust Compiler Bug
38-
- id: clean
39-
name: Make Build Clean
40-
run: cargo clean
41-
4237
- id: test-mysql
4338
name: Run Integration Tests (MySQL)
4439
run: ./contrib/dev-tools/container/e2e/mysql/run-e2e-tests.sh

.github/workflows/testing.yaml

+6-23
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,18 @@ jobs:
2828
name: Enable Workflow Cache
2929
uses: Swatinem/rust-cache@v2
3030

31-
# Temporary Cleaning to avoid Rust Compiler Bug
32-
- id: clean
33-
name: Make Build Clean
34-
run: cargo clean
35-
3631
- id: format
3732
name: Run Formatting-Checks
3833
run: cargo fmt --check
3934

40-
check:
35+
check:
4136
name: Static Analysis
4237
runs-on: ubuntu-latest
4338
needs: format
4439

4540
strategy:
4641
matrix:
47-
toolchain: [stable, nightly]
42+
toolchain: [nightly, stable]
4843

4944
steps:
5045
- id: checkout
@@ -62,11 +57,6 @@ jobs:
6257
name: Enable Workflow Cache
6358
uses: Swatinem/rust-cache@v2
6459

65-
# Temporary Cleaning to avoid Rust Compiler Bug
66-
- id: clean
67-
name: Make Build Clean
68-
run: cargo clean
69-
7060
- id: check
7161
name: Run Build Checks
7262
run: cargo check --tests --benches --examples --workspace --all-targets --all-features
@@ -81,14 +71,16 @@ jobs:
8171
RUSTDOCFLAGS: "-D warnings"
8272
run: cargo doc --no-deps --bins --examples --workspace --all-features
8373

74+
75+
8476
unit:
8577
name: Units
8678
runs-on: ubuntu-latest
8779
needs: check
8880

8981
strategy:
9082
matrix:
91-
toolchain: [stable, nightly]
83+
toolchain: [nightly, stable]
9284

9385
steps:
9486
- id: checkout
@@ -106,11 +98,6 @@ jobs:
10698
name: Enable Job Cache
10799
uses: Swatinem/rust-cache@v2
108100

109-
# Temporary Cleaning to avoid Rust Compiler Bug
110-
- id: clean
111-
name: Make Build Clean
112-
run: cargo clean
113-
114101
- id: imdl
115102
name: Install Intermodal
116103
run: cargo install imdl
@@ -130,7 +117,7 @@ jobs:
130117

131118
strategy:
132119
matrix:
133-
toolchain: [stable, nightly]
120+
toolchain: [nightly, stable]
134121

135122
steps:
136123
- id: checkout
@@ -147,10 +134,6 @@ jobs:
147134
name: Enable Job Cache
148135
uses: Swatinem/rust-cache@v2
149136

150-
# Temporary Cleaning to avoid Rust Compiler Bug
151-
- id: clean
152-
name: Make Build Clean
153-
run: cargo clean
154137

155138
- id: test-sqlite
156139
name: Run Integration Tests (SQLite)

0 commit comments

Comments
 (0)