Skip to content

Commit

Permalink
ci: skip mix-with-tools-mev.yaml on GitHub actions (ethpandaops#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y authored Oct 30, 2023
1 parent 25e0d8a commit a455213
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ jobs:
kurtosis analytics disable
- name: Run Starlark
run: kurtosis run ${{ github.workspace }} --args-file ${{ matrix.file_name }}
run: |
if [ "${{ matrix.file_name }}" != "./.github/tests/mix-with-tools-mev.yaml" ]; then
kurtosis run ${{ github.workspace }} --args-file ${{ matrix.file_name }}
else
echo "Skipping ./.github/tests/mix-with-tools-mev.yaml"
fi
- name: Notify
if: cancelled() || failure()
Expand All @@ -42,4 +47,5 @@ jobs:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
with:
args: "The nightly test for ${{matrix.file_name}} on ethereum-package has failed find it here ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"


0 comments on commit a455213

Please sign in to comment.