Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ethereum-package
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
ethereum-package
Commits
394e2a83
Unverified
Commit
394e2a83
authored
Oct 27, 2023
by
Gyanendra Mishra
Committed by
GitHub
Oct 27, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci: continue running jobs if one nightly job fails (#344)
parent
1d361fdf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
3 deletions
+13
-3
nightly.yml
.github/workflows/nightly.yml
+11
-1
per-pr.yml
.github/workflows/per-pr.yml
+1
-1
input_parser.star
src/package_io/input_parser.star
+1
-1
No files found.
.github/workflows/nightly.yml
View file @
394e2a83
...
@@ -12,13 +12,14 @@ jobs:
...
@@ -12,13 +12,14 @@ jobs:
steps
:
steps
:
-
uses
:
actions/checkout@v4
-
uses
:
actions/checkout@v4
-
id
:
set-matrix
-
id
:
set-matrix
run
:
echo "
::set-output name=matrix::$(ls ./.github/tests/*.yaml | jq -R -s -c 'split("\n")[:-1]')"
run
:
echo "
matrix=$(ls ./.github/tests/*.yaml | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT
run_with_args
:
run_with_args
:
needs
:
list-yamls
needs
:
list-yamls
strategy
:
strategy
:
matrix
:
matrix
:
file_name
:
${{ fromJson(needs.list-yamls.outputs.matrix) }}
file_name
:
${{ fromJson(needs.list-yamls.outputs.matrix) }}
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
continue-on-error
:
true
steps
:
steps
:
-
name
:
Checkout Repository
-
name
:
Checkout Repository
uses
:
actions/checkout@v4
uses
:
actions/checkout@v4
...
@@ -32,3 +33,12 @@ jobs:
...
@@ -32,3 +33,12 @@ jobs:
-
name
:
Run Starlark
-
name
:
Run Starlark
run
:
kurtosis run ${{ github.workspace }} --args-file ${{ matrix.file_name }}
run
:
kurtosis run ${{ github.workspace }} --args-file ${{ matrix.file_name }}
-
name
:
Notify
if
:
cancelled() || failure()
uses
:
Ilshidur/action-discord@master
env
:
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
}}"
.github/workflows/per-pr.yml
View file @
394e2a83
...
@@ -52,7 +52,7 @@ jobs:
...
@@ -52,7 +52,7 @@ jobs:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
steps
:
steps
:
-
name
:
Checkout Repository
-
name
:
Checkout Repository
uses
:
actions/checkout@v
2
uses
:
actions/checkout@v
4
-
name
:
Setup Kurtosis
-
name
:
Setup Kurtosis
run
:
|
run
:
|
...
...
src/package_io/input_parser.star
View file @
394e2a83
...
@@ -8,7 +8,7 @@ DEFAULT_EL_IMAGES = {
...
@@ -8,7 +8,7 @@ DEFAULT_EL_IMAGES = {
"geth": "ethereum/client-go:latest",
"geth": "ethereum/client-go:latest",
"erigon": "ethpandaops/erigon:devel",
"erigon": "ethpandaops/erigon:devel",
"nethermind": "nethermind/nethermind:latest",
"nethermind": "nethermind/nethermind:latest",
"besu": "hyperledger/besu:
develop
",
"besu": "hyperledger/besu:
latest
",
"reth": "ghcr.io/paradigmxyz/reth",
"reth": "ghcr.io/paradigmxyz/reth",
"ethereumjs": "ethpandaops/ethereumjs:master",
"ethereumjs": "ethpandaops/ethereumjs:master",
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment