Skip to content

Commit b444517

Browse files
authored
Merge branch 'main' into julien/speedup
2 parents 989f43d + 50a73fb commit b444517

32 files changed

Lines changed: 5445 additions & 1179 deletions

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
go test -bench=BenchmarkProduceBlock -benchmem -run='^$' \
4444
./block/internal/executing/... > block_executor_output.txt
4545
- name: Upload benchmark results
46-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
46+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
4747
with:
4848
name: evm-benchmark-results
4949
path: |
@@ -72,7 +72,7 @@ jobs:
7272
-run='^TestSpamoorSuite$/^TestSpamoorSmoke$' -v -timeout=15m \
7373
./benchmark/ --evm-binary=../../../build/evm
7474
- name: Upload benchmark results
75-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
75+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7676
with:
7777
name: spamoor-benchmark-results
7878
path: test/e2e/benchmark/spamoor_bench.json

.github/workflows/docs_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ jobs:
5151
with:
5252
github_token: ${{ secrets.GITHUB_TOKEN }}
5353
publish_dir: ./docs/.vitepress/dist
54-
cname: ev.xyz
54+
cname: docs.ev.xyz

.github/workflows/ghcr-prune.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- local-da
3131
steps:
3232
- name: Delete stale tags
33-
uses: actions/github-script@v8
33+
uses: actions/github-script@v9
3434
env:
3535
PACKAGE_NAME: ${{ matrix.package }}
3636
OVERRIDE_RETENTION: ${{ github.event.inputs.retention-days }}

.github/workflows/release-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
177177
- name: Create Draft GitHub Release
178178
id: create-release
179-
uses: softprops/action-gh-release@v2
179+
uses: softprops/action-gh-release@v3
180180
with:
181181
draft: true
182182
name: ${{ steps.extract-version.outputs.tag }} (${{ fromJSON(steps.claude-release.outputs.structured_output).release_date }})

.github/workflows/rust-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
7777
- name: Create GitHub Release
7878
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
79-
uses: softprops/action-gh-release@v2
79+
uses: softprops/action-gh-release@v3
8080
with:
8181
name: Rust Client ${{ github.ref_name }}
8282
body: |

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Run unit test
5656
run: just test-cover
5757
- name: Upload unit test coverage report
58-
uses: actions/upload-artifact@v7.0.0
58+
uses: actions/upload-artifact@v7.0.1
5959
with:
6060
name: unit-test-coverage-report-${{ github.sha }}
6161
path: ./coverage.txt
@@ -75,7 +75,7 @@ jobs:
7575
- name: Run integration test
7676
run: just test-integration-cover
7777
- name: Upload integration test coverage report
78-
uses: actions/upload-artifact@v7.0.0
78+
uses: actions/upload-artifact@v7.0.1
7979
with:
8080
name: integration-test-coverage-report-${{ github.sha }}
8181
path: ./node/coverage.txt

.just/build.just

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ 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 .
2931
@echo "--> Building local-da"
3032
@cd tools/local-da && go build -ldflags "{{ ldflags }}" -o {{ build_dir }}/local-da .
3133
@echo "--> All ev-node binaries built!"
@@ -46,6 +48,14 @@ build-evm:
4648
@cd apps/evm && go build -ldflags "{{ ldflags }}" -o {{ build_dir }}/evm .
4749
@echo " Check the binary with: {{ build_dir }}/evm"
4850

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

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,4 @@ just proto-lint
127127
| 2024/01/12 | [Informal Systems](https://informal.systems/) | [eccdd...bcb9d](https://github.com/evstack/ev-node/commit/eccdd0f1793a5ac532011ef4d896de9e0d8bcb9d) | [informal-systems.pdf](docs/audit/informal-systems.pdf) |
128128
| 2024/01/10 | [Binary Builders](https://binary.builders/) | [eccdd...bcb9d](https://github.com/evstack/ev-node/commit/eccdd0f1793a5ac532011ef4d896de9e0d8bcb9d) | [binary-builders.pdf](docs/audit/binary-builders.pdf) |
129129

130-
[docs]: <https://ev.xyz>
130+
[docs]: <https://docs.ev.xyz>

apps/grpc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,6 @@ If you have issues connecting to the DA layer:
149149

150150
## See Also
151151

152-
- [Evolve Documentation](https://ev.xyz)
152+
- [Evolve Documentation](https://docs.ev.xyz)
153153
- [gRPC Execution Interface](../../execution/grpc/README.md)
154154
- [Single Sequencer Documentation](../../pkg/sequencers/single/README.md)

0 commit comments

Comments
 (0)