Skip to content

Commit 2d59fef

Browse files
committed
Do not merge CI modification
* That temporarily removes the error on clippy warnings. * And activates matrix test lab
1 parent 430af3c commit 2d59fef

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
with:
9696
name: clippy-${{ matrix.project }}
9797
token: ${{ secrets.GITHUB_TOKEN }}
98-
args: --release --all-features --all-targets --no-deps -p ${{ env.CARGO_PROJECT_NAME }} -- -D warnings
98+
args: --release --all-features --all-targets --no-deps -p ${{ env.CARGO_PROJECT_NAME }}
9999

100100
- name: Cargo fmt
101101
uses: actions-rs/cargo@v1
@@ -205,6 +205,10 @@ jobs:
205205
run-test-lab:
206206
runs-on: ubuntu-22.04
207207
needs: [ build ]
208+
strategy:
209+
fail-fast: false
210+
matrix:
211+
run_id: [0,1,2,3,4,5,6,7,8,9]
208212
steps:
209213
- name: Checkout sources
210214
uses: actions/checkout@v2
@@ -247,7 +251,7 @@ jobs:
247251
if: ${{ failure() }}
248252
uses: actions/upload-artifact@v3
249253
with:
250-
name: mithril-e2e-tests-artifacts-run_${{ github.run_number }}-attempt_${{ github.run_attempt }}
254+
name: mithril-e2e-tests-artifacts-run_${{ github.run_number }}-attempt_${{ github.run_attempt }}-run_id_${{ matrix.run_id }}
251255
path: |
252256
./artifacts/*
253257
# including node.sock makes the upload fails so exclude them:

0 commit comments

Comments
 (0)