Commit a4552130 authored by Gyanendra Mishra's avatar Gyanendra Mishra Committed by GitHub

ci: skip mix-with-tools-mev.yaml on GitHub actions (#349)

parent 25e0d8a3
...@@ -33,7 +33,12 @@ jobs: ...@@ -33,7 +33,12 @@ jobs:
kurtosis analytics disable kurtosis analytics disable
- name: Run Starlark - 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 - name: Notify
if: cancelled() || failure() if: cancelled() || failure()
...@@ -42,4 +47,5 @@ jobs: ...@@ -42,4 +47,5 @@ jobs:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
with: 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 }}" 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 }}"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment