Skip to content

Commit

Permalink
Merge pull request #73 from Ethernal-Tech/feature/blade-binary-fix
Browse files Browse the repository at this point in the history
Blade binary should be resolved correctly in e2e tests
  • Loading branch information
igorcrevar authored Jan 9, 2024
2 parents 4da7493 + 22f0fdc commit f4176d4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ release:
builds:
- id: darwin-amd64
main: ./main.go
binary: polygon-edge
binary: blade
goos:
- darwin
goarch:
Expand All @@ -21,7 +21,7 @@ builds:

- id: darwin-arm64
main: ./main.go
binary: polygon-edge
binary: blade
goos:
- darwin
goarch:
Expand All @@ -34,7 +34,7 @@ builds:

- id: linux-amd64
main: ./main.go
binary: polygon-edge
binary: blade
goos:
- linux
goarch:
Expand All @@ -51,7 +51,7 @@ builds:

- id: linux-arm64
main: ./main.go
binary: polygon-edge
binary: blade
goos:
- linux
goarch:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN set -x \
&& apk add --update --no-cache \
ca-certificates \
&& rm -rf /var/cache/apk/*
COPY polygon-edge /usr/local/bin/
COPY blade /usr/local/bin/

EXPOSE 8545 9632 1478

Expand All @@ -13,4 +13,4 @@ RUN addgroup -S edge \

USER edge

ENTRYPOINT ["polygon-edge"]
ENTRYPOINT ["blade"]
2 changes: 1 addition & 1 deletion e2e-polybft/framework/test-cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func resolveBinary() string {
return bin
}
// fallback
return "polygon-edge"
return "blade"
}

type TestClusterConfig struct {
Expand Down

0 comments on commit f4176d4

Please sign in to comment.