-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat/keep tests in separate repo for upgrade to 1.22 (#4736)
* Test. * 1.21.11 * Fixed rosetta * Fixed bootstrap * Custom genesis generation for [email protected]+. * Fixed 1.19 imports. * Fixed 1.19 imports. * Replaced 1.20 keys. * 100% coverage. * Fixed trailing zeroes. * Rebased & Fixed protobuf usage. * Compatibility with [email protected]. * Regenerated proto files to the latest version. * Disabled transport security. * [email protected] * fix: add fetch to the the travis scripts * fix: point travis to the 1.22 golang tests * set p2p NoTransportSecurity default to false * feat(go version) - bump go version in Dockerfiles and README.md * Go 1.22 tags. --------- Co-authored-by: frozen <[email protected]> Co-authored-by: Nita Neou (Soph) <[email protected]>
- Loading branch information
1 parent
5ec19bc
commit c44c2ea
Showing
30 changed files
with
732 additions
and
540 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,15 @@ | ||
* | ||
!scripts/docker | ||
harmony_db* | ||
bin | ||
cache | ||
.DS_Store | ||
*.log | ||
log-* | ||
tmp_log | ||
*.rlp | ||
**/*.rlp | ||
.hmykey | ||
db-127.0.0.1-* | ||
db* | ||
.dht | ||
.dht-* | ||
explorer_storage_* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package message | ||
package harmonymessage | ||
|
||
import ( | ||
"context" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
|
||
docker run --platform linux/amd64 -v ${PWD}:/tmp ${PROTOC_IMAGE} /tmp/message.proto | ||
docker run --platform linux/amd64 -v ${PWD}:/tmp ${PROTOC_IMAGE} /tmp/harmonymessage.proto |
Oops, something went wrong.