Skip to content

Commit 8bb2c46

Browse files
committed
chore: remove ev-grpc
1 parent fdc2b50 commit 8bb2c46

37 files changed

Lines changed: 6 additions & 6409 deletions

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ jobs:
8080
apps: |
8181
[
8282
{"name": "ev-node-evm", "dockerfile": "apps/evm/Dockerfile"},
83-
{"name": "ev-node-grpc", "dockerfile": "apps/grpc/Dockerfile"},
8483
{"name": "ev-node-loadgen", "dockerfile": "apps/loadgen/Dockerfile"},
8584
{"name": "ev-node-testapp", "dockerfile": "apps/testapp/Dockerfile"}
8685
]

.just/build.just

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ build-all:
2626
@cd apps/testapp && go build -ldflags "{{ ldflags }}" -o {{ build_dir }}/testapp .
2727
@echo "--> Building evm"
2828
@cd apps/evm && go build -ldflags "{{ ldflags }}" -o {{ build_dir }}/evm .
29-
@echo "--> Building grpc"
30-
@cd apps/grpc && go build -ldflags "{{ ldflags }}" -o {{ build_dir }}/evgrpc .
3129
@echo "--> Building loadgen"
3230
@cd apps/loadgen && go build -ldflags "{{ ldflags }}" -o {{ build_dir }}/ev-loadgen .
3331
@echo "--> Building local-da"
@@ -50,14 +48,6 @@ build-evm:
5048
@cd apps/evm && go build -ldflags "{{ ldflags }}" -o {{ build_dir }}/evm .
5149
@echo " Check the binary with: {{ build_dir }}/evm"
5250

53-
# Build gRPC binary
54-
[group('build')]
55-
build-grpc:
56-
@echo "--> Building gRPC"
57-
@mkdir -p {{ build_dir }}
58-
@cd apps/grpc && go build -ldflags "{{ ldflags }}" -o {{ build_dir }}/evgrpc .
59-
@echo " Check the binary with: {{ build_dir }}/evgrpc"
60-
6151
# Build local-da binary
6252
[group('build')]
6353
build-da:

.just/proto.just

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ proto-gen:
44
@echo "--> Generating Protobuf files"
55
buf generate --path="./proto/evnode" --template="buf.gen.yaml" --config="buf.yaml"
66
buf generate --path="./proto/execution/evm" --template="buf.gen.evm.yaml" --config="buf.yaml"
7-
buf generate --template="buf.gen.grpc.yaml" --config="buf.yaml"
87

98
# Lint protobuf files (requires Docker)
109
[group('proto')]

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
### Removed
13+
14+
- **BREAKING:** Remove the obsolete `evgrpc` app and `execution/grpc` transport module.
15+
1216
### Fixed
1317

1418
- Reject unsupported `net-info --output` formats instead of falling back to text output [#3360](https://github.com/evstack/ev-node/pull/3360).

RELEASE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ Use the hierarchical tag format: `{app-path}/v{major}.{minor}.{patch}`
105105

106106
- `apps/evm/v0.2.0` → Releases `apps/evm/`
107107
- `apps/testapp/v1.0.0` → Releases `apps/testapp/`
108-
- `apps/grpc/v2.1.3` → Releases `apps/grpc/`
109108

110109
### Automated Process
111110

apps/grpc/Dockerfile

Lines changed: 0 additions & 61 deletions
This file was deleted.

apps/grpc/README.md

Lines changed: 0 additions & 163 deletions
This file was deleted.

apps/grpc/cmd/init.go

Lines changed: 0 additions & 110 deletions
This file was deleted.

0 commit comments

Comments
 (0)