Skip to content

Commit 7f4d78a

Browse files
author
pmmiranda
committed
ignore nimbus on CI and Kurtosis git workflows
1 parent a4a92c3 commit 7f4d78a

File tree

5 files changed

+7
-16
lines changed

5 files changed

+7
-16
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- '**/*.md'
1818
- 'hive_integration/**'
1919
- 'fluffy/**'
20+
- 'nimbus/**'
2021
- '.github/workflows/fluffy*.yml'
2122
- 'nimbus_verified_proxy/**'
2223
- '.github/workflows/nimbus_verified_proxy.yml'

.github/workflows/kurtosis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Nimbus
2-
# Copyright (c) 2024 Status Research & Development GmbH
2+
# Copyright (c) 2025 Status Research & Development GmbH
33
# Licensed under either of
44
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
55
# http://www.apache.org/licenses/LICENSE-2.0)
@@ -20,6 +20,7 @@ on:
2020
- '**/*.md'
2121
- 'hive_integration/**'
2222
- 'fluffy/**'
23+
- 'nimbus/**'
2324
- '.github/workflows/fluffy*.yml'
2425
- 'nimbus_verified_proxy/**'
2526
- '.github/workflows/nimbus_verified_proxy.yml'
@@ -32,6 +33,7 @@ on:
3233
- '**/*.md'
3334
- 'hive_integration/**'
3435
- 'fluffy/**'
36+
- 'nimbus/**'
3537
- '.github/workflows/fluffy*.yml'
3638
- 'nimbus_verified_proxy/**'
3739
- '.github/workflows/nimbus_verified_proxy.yml'

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Nimbus
2-
# Copyright (c) 2024 Status Research & Development GmbH
2+
# Copyright (c) 2025 Status Research & Development GmbH
33
# Licensed under either of
44
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
55
# http://www.apache.org/licenses/LICENSE-2.0)
@@ -21,7 +21,7 @@ ADD . /root/nimbus-eth1
2121

2222
RUN cd /root/nimbus-eth1 \
2323
&& make -j$(nproc) update-from-ci \
24-
&& make -j$(nproc) V=1 LOG_LEVEL=TRACE nimbus
24+
&& make -j$(nproc) V=1 LOG_LEVEL=TRACE nimbus_execution_client
2525

2626
# --------------------------------- #
2727
# Starting new image to reduce size #

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ clean: | clean-common
365365
rm -rf build/{nimbus_client,nimbus_execution_client,fluffy,libverifproxy,nimbus_verified_proxy}
366366
rm -rf build/{$(TOOLS_CSV),$(FLUFFY_TOOLS_CSV)}
367367
rm -rf build/{all_tests_nimbus,all_tests,test_kvstore_rocksdb,test_rpc,all_fluffy_tests,all_history_network_custom_chain_tests,test_portal_testnet,utp_test_app,utp_test}
368-
rm -rf build/{*.dSYM}
368+
rm -rf build/*.dSYM
369369
rm -rf tools/t8n/{t8n,t8n_test}
370370
rm -rf tools/evmstate/{evmstate,evmstate_test}
371371
ifneq ($(USE_LIBBACKTRACE), 0)

nimbus/conf.nim

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,3 @@ type
5353

5454
Nimbus* = ref object
5555
serviceList*: seq[NimbusService]
56-
57-
## filesystem specs
58-
proc defaultDataDir*(): string =
59-
let dataDir =
60-
when defined(windows):
61-
"AppData" / "Roaming" / "Nimbus"
62-
elif defined(macosx):
63-
"Library" / "Application Support" / "Nimbus"
64-
else:
65-
".cache" / "Nimbus"
66-
67-
getHomeDir() / dataDir

0 commit comments

Comments
 (0)