|
22 | 22 | image_tag: ${{ steps.tag.outputs.tag }} |
23 | 23 | env: |
24 | 24 | IGNITE_VERSION: v29.3.0 # the gm build script depends on some annotations |
25 | | - IGNITE_EVOLVE_APP_VERSION: main |
| 25 | + IGNITE_EVOLVE_APP_VERSION: 097513a38337 |
26 | 26 | EVNODE_VERSION: v1.0.0-beta.10.0.20251216132820-afcd6bd9b354 |
27 | 27 | steps: |
28 | 28 | - uses: actions/checkout@v5 |
|
65 | 65 | env: |
66 | 66 | EVNODE_VERSION: "v1.0.0-beta.10.0.20251216132820-afcd6bd9b354" |
67 | 67 | IGNITE_VERSION: "v29.6.1" |
68 | | - IGNITE_EVOLVE_APP_VERSION: "main" |
| 68 | + IGNITE_EVOLVE_APP_VERSION: "097513a38337" |
69 | 69 | EVOLVE_IMAGE_REPO: "evolve-gm" |
70 | 70 | EVOLVE_IMAGE_TAG: "latest" |
71 | 71 |
|
@@ -108,7 +108,7 @@ jobs: |
108 | 108 | DO_NOT_TRACK: true |
109 | 109 | EVNODE_VERSION: "v1.0.0-beta.10.0.20251216132820-afcd6bd9b354" |
110 | 110 | IGNITE_VERSION: "v29.6.1" |
111 | | - IGNITE_EVOLVE_APP_VERSION: "main" |
| 111 | + IGNITE_EVOLVE_APP_VERSION: "097513a38337" |
112 | 112 | outputs: |
113 | 113 | carol_mnemonic: ${{ steps.save_mnemonic.outputs.carol_mnemonic }} |
114 | 114 | gmd_home: ${{ steps.paths.outputs.GMD_HOME }} |
@@ -161,10 +161,16 @@ jobs: |
161 | 161 |
|
162 | 162 | # replace the github.com/evstack/ev-node module with tagged version |
163 | 163 | go mod edit -replace github.com/evstack/ev-node=github.com/evstack/ev-node@$EVNODE_VERSION |
| 164 | + go mod edit -replace github.com/evstack/ev-node/core=github.com/evstack/ev-node/core@$EVNODE_VERSION |
| 165 | + go mod edit -replace github.com/evstack/ev-node/execution/grpc=github.com/evstack/ev-node/execution/grpc@$EVNODE_VERSION |
| 166 | + go mod edit -replace github.com/evstack/ev-node/execution/evm=github.com/evstack/ev-node/execution/evm@$EVNODE_VERSION |
164 | 167 |
|
165 | 168 | # replace the github.com/evstack/ev-abci module with the local version |
166 | 169 | go mod edit -replace github.com/evstack/ev-abci=$GO_EXECUTION_ABCI_DIR |
167 | 170 |
|
| 171 | + # force modern quic-go so webtransport-go builds cleanly |
| 172 | + go mod edit -replace github.com/quic-go/quic-go=github.com/quic-go/quic-go@v0.57.1 |
| 173 | +
|
168 | 174 | # download dependencies and update go.mod/go.sum |
169 | 175 | go mod tidy |
170 | 176 |
|
@@ -360,6 +366,9 @@ jobs: |
360 | 366 | cd /tmp/da-tool |
361 | 367 | go mod init temp |
362 | 368 | go mod edit -replace github.com/evstack/ev-node=github.com/evstack/ev-node@$EVNODE_VERSION |
| 369 | + go mod edit -replace github.com/evstack/ev-node/core=github.com/evstack/ev-node/core@$EVNODE_VERSION |
| 370 | + go mod edit -replace github.com/evstack/ev-node/execution/grpc=github.com/evstack/ev-node/execution/grpc@$EVNODE_VERSION |
| 371 | + go mod edit -replace github.com/evstack/ev-node/execution/evm=github.com/evstack/ev-node/execution/evm@$EVNODE_VERSION |
363 | 372 | go get github.com/evstack/ev-node/tools/local-da |
364 | 373 | # start the local da in the background |
365 | 374 | go tool github.com/evstack/ev-node/tools/local-da & |
|
0 commit comments