Skip to content

Commit fe3abfe

Browse files
authored
NVP: Adjust CI to run also on EL changes (#3772)
* NVP: Adjust CI to run also on EL changes The nimbus_verified_proxy uses several modules from the execution_chain folder. To make sure nothing breaks the CI should also run on changes in that folder. It uses nothing of the portal folder, thus CI can avoid to be run on changes in portal. The nimbus_execution_client doesn't use anthing from the nimbus_verified_proxy folder, so the reverse relationship does not need to exist. This is different for portal, where EL does integrate that codebase. * Allow kurtosis tasks to run on nvp changes
1 parent 6bf89c4 commit fe3abfe

File tree

2 files changed

+18
-22
lines changed

2 files changed

+18
-22
lines changed

.github/workflows/kurtosis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ on:
1919
- 'portal/docs/**'
2020
- '**/*.md'
2121
- 'hive_integration/**'
22-
- 'nimbus_verified_proxy/**'
23-
- '.github/workflows/nimbus_verified_proxy.yml'
2422
- '.github/workflows/build_base_image.yml'
2523
- 'docker/**'
2624

@@ -30,8 +28,6 @@ on:
3028
- 'portal/docs/**'
3129
- '**/*.md'
3230
- 'hive_integration/**'
33-
- 'nimbus_verified_proxy/**'
34-
- '.github/workflows/nimbus_verified_proxy.yml'
3531
- '.github/workflows/build_base_image.yml'
3632
- 'docker/**'
3733

.github/workflows/nimbus_verified_proxy.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ on:
1313
push:
1414
branches:
1515
- master
16-
paths:
17-
- '.github/workflows/nimbus_verified_proxy.yml'
18-
- 'nimbus_verified_proxy/**'
19-
- '!nimbus_verified_proxy/**.md'
20-
- '!nimbus_verified_proxy/docs/**'
21-
- 'execution_chain/db/**'
22-
- 'vendor/**'
23-
- 'Makefile'
24-
- 'nimbus.nimble'
16+
paths-ignore:
17+
- 'doc/**'
18+
- 'portal/docs/**'
19+
- '**/*.md'
20+
- 'portal/**'
21+
- '.github/workflows/portal.yml'
22+
- '.github/workflows/portal_docs.yml'
23+
- '.github/workflows/build_base_image.yml'
24+
- 'docker/**'
2525

2626
pull_request:
27-
paths:
28-
- '.github/workflows/nimbus_verified_proxy.yml'
29-
- 'nimbus_verified_proxy/**'
30-
- '!nimbus_verified_proxy/**.md'
31-
- '!nimbus_verified_proxy/docs/**'
32-
- 'execution_chain/db/**'
33-
- 'vendor/**'
34-
- 'Makefile'
35-
- 'nimbus.nimble'
27+
paths-ignore:
28+
- 'doc/**'
29+
- 'portal/docs/**'
30+
- '**/*.md'
31+
- 'portal/**'
32+
- '.github/workflows/portal.yml'
33+
- '.github/workflows/portal_docs.yml'
34+
- '.github/workflows/build_base_image.yml'
35+
- 'docker/**'
3636

3737
workflow_dispatch:
3838

0 commit comments

Comments
 (0)