Skip to content

Commit

Permalink
Do not merge CI modification
Browse files Browse the repository at this point in the history
* That temporarily removes the error on clippy warnings.
* And activates matrix test lab
  • Loading branch information
jpraynaud committed Sep 23, 2022
1 parent 430af3c commit 2d59fef
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
with:
name: clippy-${{ matrix.project }}
token: ${{ secrets.GITHUB_TOKEN }}
args: --release --all-features --all-targets --no-deps -p ${{ env.CARGO_PROJECT_NAME }} -- -D warnings
args: --release --all-features --all-targets --no-deps -p ${{ env.CARGO_PROJECT_NAME }}

- name: Cargo fmt
uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -205,6 +205,10 @@ jobs:
run-test-lab:
runs-on: ubuntu-22.04
needs: [ build ]
strategy:
fail-fast: false
matrix:
run_id: [0,1,2,3,4,5,6,7,8,9]
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand Down Expand Up @@ -247,7 +251,7 @@ jobs:
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: mithril-e2e-tests-artifacts-run_${{ github.run_number }}-attempt_${{ github.run_attempt }}
name: mithril-e2e-tests-artifacts-run_${{ github.run_number }}-attempt_${{ github.run_attempt }}-run_id_${{ matrix.run_id }}
path: |
./artifacts/*
# including node.sock makes the upload fails so exclude them:
Expand Down

0 comments on commit 2d59fef

Please sign in to comment.