Skip to content

Commit 6900cc7

Browse files
authored
Merge branch 'master' into tape-to-vitest-refactor-vm-testrunners
2 parents 6a48353 + 88ef0bd commit 6900cc7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+339
-3051
lines changed

.github/workflows/block-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
# We clone the repo and submodules if triggered from work-flow dispatch
3636
- if: inputs.submodule-cache-key == 'none'
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
with:
3939
submodules: recursive
4040

@@ -71,4 +71,4 @@ jobs:
7171
with:
7272
token: ${{ secrets.CODECOV_TOKEN }}
7373
files: ${{ github.workspace}}/packages/block/coverage/lcov.info
74-
flags: block
74+
flags: block

.github/workflows/blockchain-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
# We clone the repo and submodules if triggered from work-flow dispatch
3333
- if: inputs.submodule-cache-key == 'none'
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535

3636
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
3737
- uses: actions/cache/restore@v4
@@ -56,4 +56,4 @@ jobs:
5656
with:
5757
token: ${{ secrets.CODECOV_TOKEN }}
5858
files: ${{ env.cwd }}/coverage/lcov.info
59-
flags: blockchain
59+
flags: blockchain

.github/workflows/browser.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ concurrency:
2626

2727
jobs:
2828
test-all-browser:
29+
if: contains(join(github.event.pull_request.labels.*.name, ' '), 'test no browser') == false
2930
runs-on: ubuntu-latest
3031
strategy:
3132
fail-fast: false
3233
steps:
3334
# We clone the repo and submodules if triggered from work-flow dispatch
3435
- if: inputs.submodule-cache-key == 'none'
35-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3637
with:
3738
submodules: recursive
3839

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
submodules: recursive
2525

@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848

4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v5
5151

5252
- uses: actions/cache/restore@v4
5353
id: dep-cache

.github/workflows/client-build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ concurrency:
2929

3030
jobs:
3131
test-client:
32+
if: contains(join(github.event.pull_request.labels.*.name, ' '), 'test client')
3233
runs-on: ubuntu-latest
3334
steps:
3435
# We clone the repo and submodules if triggered from work-flow dispatch
3536
- if: inputs.submodule-cache-key == 'none'
36-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3738

3839
- if: inputs.dep-cache-key != 'none'
3940
uses: actions/cache/restore@v4
@@ -72,7 +73,7 @@ jobs:
7273
fail-fast: false
7374
steps:
7475
- if: inputs.submodule-cache-key == 'none'
75-
uses: actions/checkout@v4
76+
uses: actions/checkout@v5
7677

7778
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
7879
- if: inputs.dep-cache-key != 'none'

.github/workflows/common-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
# We clone the repo and submodules if triggered from work-flow dispatch
3434
- if: inputs.submodule-cache-key == 'none'
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636

3737
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
3838
- if: inputs.dep-cache-key != 'none'
@@ -69,4 +69,4 @@ jobs:
6969
with:
7070
token: ${{ secrets.CODECOV_TOKEN }}
7171
files: ${{ env.cwd }}/coverage/lcov.info
72-
flags: util
72+
flags: util

.github/workflows/devp2p-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ concurrency:
2323

2424
jobs:
2525
test-devp2p:
26+
if: contains(join(github.event.pull_request.labels.*.name, ' '), 'test devp2p')
2627
runs-on: ubuntu-latest
2728

2829
steps:
2930
# We clone the repo and submodules if triggered from work-flow dispatch
3031
- if: inputs.submodule-cache-key == 'none'
31-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3233

3334
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
3435
- if: inputs.dep-cache-key != 'none'

.github/workflows/evm-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
# We clone the repo and submodules if triggered from work-flow dispatch
3636
- if: inputs.submodule-cache-key == 'none'
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
with:
3939
submodules: recursive
4040

@@ -71,4 +71,4 @@ jobs:
7171
with:
7272
token: ${{ secrets.CODECOV_TOKEN }}
7373
files: ${{ env.cwd }}/coverage/lcov.info
74-
flags: evm
74+
flags: evm

.github/workflows/examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
# We clone the repo and submodules if triggered from work-flow dispatch
2626
- if: inputs.submodule-cache-key == 'none'
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
submodules: recursive
3030

@@ -47,4 +47,4 @@ jobs:
4747
run: npm ci
4848
working-directory: ${{ github.workspace }}
4949

50-
- run: npm run examples
50+
- run: npm run examples

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
# We clone the repo and submodules if triggered from work-flow dispatch
2626
- if: inputs.submodule-cache-key == 'none'
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
3030
- if: inputs.dep-cache-key != 'none'

0 commit comments

Comments
 (0)