Skip to content

Commit

Permalink
update label, return empty version for non-wasmvm chains
Browse files Browse the repository at this point in the history
  • Loading branch information
agouin committed Nov 4, 2023
1 parent 98593e7 commit a4dbd3a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions builder/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,10 @@ func getWasmvmVersion(modFile *modfile.File) string {

fmt.Printf("WasmVM from go.mod: repo: %s, version: %s\n", wasmvmRepo, wasmvmVersion)

if wasmvmVersion == "" {
return ""
}

return wasmvmRepo + " " + wasmvmVersion
}

Expand Down
2 changes: 1 addition & 1 deletion chains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@
build-env:
- BUILD_TAGS=muslc

# Terra
# Terra Classic
- name: terra-classic
github-organization: terra-money
github-repo: classic-core
Expand Down

0 comments on commit a4dbd3a

Please sign in to comment.