Skip to content

Commit 0491148

Browse files
committed
Merge #340: ci: temp: clean before build
047359d ci: temp: clean before build (Cameron Garnham) Pull request description: ACKs for top commit: da2ce7: ACK 047359d Tree-SHA512: 6a0eee04cddf50e4c9e7ca63049cb0dd144abbea2503539c7d7effa6daff48fba76f6b66cc252d2f64ce74261b89c1ce137d9a78fa20c415e477ffb1bca0446a
2 parents 5c8b74f + 047359d commit 0491148

File tree

2 files changed

+31
-8
lines changed

2 files changed

+31
-8
lines changed

.github/workflows/coverage.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ jobs:
4545
name: Enable Workflow Cache
4646
uses: Swatinem/rust-cache@v2
4747

48+
# Temporary Cleaning to avoid Rust Compiler Bug
49+
- id: clean
50+
name: Make Build Clean
51+
run: cargo clean
52+
4853
- id: tools
4954
name: Install Tools
5055
uses: taiki-e/install-action@v2
@@ -55,10 +60,9 @@ jobs:
5560
name: Install Intermodal
5661
run: cargo install imdl
5762

58-
# Temporary Disabled to avoid Rust Compiler Bug
59-
# - id: check
60-
# name: Run Build Checks
61-
# run: cargo check --tests --benches --examples --workspace --all-targets --all-features
63+
- id: check
64+
name: Run Build Checks
65+
run: cargo check --tests --benches --examples --workspace --all-targets --all-features
6266

6367
- id: test
6468
name: Run Unit Tests

.github/workflows/testing.yaml

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ 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+
3136
- id: format
3237
name: Run Formatting-Checks
3338
run: cargo fmt --check
@@ -57,10 +62,14 @@ jobs:
5762
name: Enable Workflow Cache
5863
uses: Swatinem/rust-cache@v2
5964

60-
# Temporary Disabled to avoid Rust Compiler Bug
61-
# - id: check
62-
# name: Run Build Checks
63-
# run: cargo check --tests --benches --examples --workspace --all-targets --all-features
65+
# Temporary Cleaning to avoid Rust Compiler Bug
66+
- id: clean
67+
name: Make Build Clean
68+
run: cargo clean
69+
70+
- id: check
71+
name: Run Build Checks
72+
run: cargo check --tests --benches --examples --workspace --all-targets --all-features
6473

6574
- id: lint
6675
name: Run Lint Checks
@@ -97,6 +106,11 @@ jobs:
97106
name: Enable Job Cache
98107
uses: Swatinem/rust-cache@v2
99108

109+
# Temporary Cleaning to avoid Rust Compiler Bug
110+
- id: clean
111+
name: Make Build Clean
112+
run: cargo clean
113+
100114
- id: tools
101115
name: Install Tools
102116
uses: taiki-e/install-action@v2
@@ -136,6 +150,11 @@ jobs:
136150
name: Enable Job Cache
137151
uses: Swatinem/rust-cache@v2
138152

153+
# Temporary Cleaning to avoid Rust Compiler Bug
154+
- id: clean
155+
name: Make Build Clean
156+
run: cargo clean
157+
139158
- id: test
140159
name: Run Integration Tests
141160
run: ./docker/bin/e2e/run-e2e-tests.sh

0 commit comments

Comments
 (0)