You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
continue-on-error: true # Don't fail the entire job
39
43
40
44
- name: Check if Discord Webhook is Set
41
45
id: check_discord_webhook
@@ -54,10 +58,11 @@ jobs:
54
58
env:
55
59
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
56
60
with:
57
-
args: "The nightly test for ${{matrix.file_name}} on optimism-package has failed find it here ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
61
+
args: "The nightly test for ${{matrix.file_name}} on optimism-package has failed. Find it here: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
58
62
59
63
run_with_external_l1_args:
60
64
runs-on: ubuntu-latest
65
+
continue-on-error: true # Ensure failure here doesn't stop other jobs
61
66
steps:
62
67
- name: Checkout Repository
63
68
uses: actions/checkout@v4
@@ -68,10 +73,10 @@ jobs:
68
73
sudo apt update
69
74
sudo apt install kurtosis-cli
70
75
kurtosis analytics disable
71
-
76
+
72
77
- name: Deploy L1
73
78
run: kurtosis run --enclave test --args-file ./.github/tests/external-l1/ethereum.yaml github.com/ethpandaops/ethereum-package
74
-
79
+
75
80
- name: Run Starlark
76
81
run: |
77
82
kurtosis run --enclave test --verbosity detailed --args-file ./.github/tests/external-l1/optimism.yaml ${{ github.workspace }}
0 commit comments