From 3e805a2d2997e3085276f0d4e34d9125993fc12a Mon Sep 17 00:00:00 2001 From: PFC <81114960+PFC-developer@users.noreply.github.com> Date: Thu, 12 Dec 2024 15:17:39 -0600 Subject: [PATCH 1/2] fix up chain defs (#303) --- chains/orai.yaml | 10 ++++++++++ chains/stride.yaml | 9 +-------- chains/symphony.yaml | 8 ++++++++ 3 files changed, 19 insertions(+), 8 deletions(-) create mode 100644 chains/orai.yaml create mode 100644 chains/symphony.yaml diff --git a/chains/orai.yaml b/chains/orai.yaml new file mode 100644 index 00000000..39e64204 --- /dev/null +++ b/chains/orai.yaml @@ -0,0 +1,10 @@ +# Oraichain +- name: oraichain + github-organization: oraichain + github-repo: wasmd + dockerfile: cosmos + build-target: make build + binaries: + - /go/bin/oraid + build-env: + - BUILD_TAGS=muslc diff --git a/chains/stride.yaml b/chains/stride.yaml index d44589ff..806f62a8 100644 --- a/chains/stride.yaml +++ b/chains/stride.yaml @@ -7,11 +7,4 @@ binaries: - build/strided -# Symphony -- name: symphony - github-organization: Orchestra-Labs - github-repo: symphony - dockerfile: cosmos - build-target: make build - binaries: - - build/symphonyd + diff --git a/chains/symphony.yaml b/chains/symphony.yaml new file mode 100644 index 00000000..acc1e58c --- /dev/null +++ b/chains/symphony.yaml @@ -0,0 +1,8 @@ +# Symphony +- name: symphony + github-organization: Orchestra-Labs + github-repo: symphony + dockerfile: cosmos + build-target: make build + binaries: + - build/symphonyd From e6fc26872d3b0a40c345a80366efddabab0b3339 Mon Sep 17 00:00:00 2001 From: vimystic <122659254+vimystic@users.noreply.github.com> Date: Thu, 12 Dec 2024 14:44:56 -0700 Subject: [PATCH 2/2] chore: use correct go image version for 1.23 (#305) --- builder/go_versions.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/go_versions.go b/builder/go_versions.go index 691b6b6d..234da213 100644 --- a/builder/go_versions.go +++ b/builder/go_versions.go @@ -14,7 +14,7 @@ const ( Go120Version = "1.20.14" Go121Version = "1.21.13" Go122Version = "1.22.7" - Go123Version = "1.23.1" + Go123Version = "1.23.4" // ADD NEW GO VERSION [1] - latest patch release for each major/minor // When updating alpine image, ensure all golang build image combinations below exist @@ -53,7 +53,7 @@ var GoImageForVersion = map[string]GoVersion{ "1.20": GoVersion{Version: Go120Version, Image: Go120Image}, "1.21": GoVersion{Version: Go121Version, Image: Go121Image}, "1.22": GoVersion{Version: Go122Version, Image: Go122Image}, - "1.23": GoVersion{Version: Go122Version, Image: Go123Image}, + "1.23": GoVersion{Version: Go123Version, Image: Go123Image}, // ADD NEW GO VERSION [4] }