Skip to content

Commit 78a80fe

Browse files
committed
912
1 parent d4924c2 commit 78a80fe

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

Dockerfile.builder

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,11 @@ ENV GOTOOLCHAIN go1.23.4
1919
RUN apk add --no-cache \
2020
ca-certificates \
2121
build-base \
22-
linux-headers \
23-
git openssh-client
22+
linux-headers
2423

2524
# Download go dependencies
2625
WORKDIR /neutron
27-
ENV GOPRIVATE=github.com/cometbft/cometbft-sec-tachyon
28-
RUN git config --global url."git@github.com:".insteadOf "https://github.com/"
2926
COPY go.mod go.sum ./
30-
RUN mkdir -p -m 0600 ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts
3127
RUN --mount=type=cache,target=/root/.cache/go-build \
3228
--mount=type=cache,target=/root/go/pkg/mod \
3329
--mount=type=ssh \

Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/make -f
22

33
PACKAGES_SIMTEST=$(shell go list ./... | grep '/simulation')
4-
VERSION := 9.1.2
4+
VERSION := $(shell echo $(shell git describe --tags) | sed 's/^v//')
55
COMMIT := $(shell git log -1 --format='%H')
66
LEDGER_ENABLED ?= true
77
SDK_PACK := $(shell go list -m github.com/cosmos/cosmos-sdk | sed 's/ /\@/g')
@@ -113,7 +113,6 @@ build-static-linux-amd64: go.sum $(BUILDDIR)/
113113
--build-arg GIT_COMMIT=$(COMMIT) \
114114
--build-arg BUILD_TAGS=$(build_tags_comma_sep),muslc \
115115
--platform linux/amd64 \
116-
--ssh default \
117116
-t neutron-amd64 \
118117
--load \
119118
-f Dockerfile.builder .
@@ -131,7 +130,6 @@ build-static-linux-arm64: go.sum $(BUILDDIR)/
131130
--build-arg GIT_COMMIT=$(COMMIT) \
132131
--build-arg BUILD_TAGS=$(build_tags_comma_sep),muslc \
133132
--platform linux/arm64 \
134-
--ssh default \
135133
-t neutron-arm64 \
136134
--load \
137135
-f Dockerfile.builder .

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818
cosmossdk.io/x/upgrade v0.1.4
1919
github.com/CosmWasm/wasmd v0.54.0
2020
github.com/CosmWasm/wasmvm/v2 v2.2.4
21-
github.com/cometbft/cometbft v0.38.20
21+
github.com/cometbft/cometbft v0.38.21
2222
github.com/cosmos/admin-module/v2 v2.0.0-20240430142959-8b3328d1b1a2
2323
github.com/cosmos/cosmos-db v1.1.1
2424
github.com/cosmos/cosmos-proto v1.0.0-beta.5
@@ -226,7 +226,6 @@ replace (
226226
github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0
227227
github.com/CosmWasm/wasmd => github.com/neutron-org/wasmd v0.54.3-neutron
228228
github.com/btcsuite/btcd/btcec/v2 => github.com/btcsuite/btcd/btcec/v2 v2.3.2
229-
github.com/cometbft/cometbft => github.com/cometbft/cometbft-sec-tachyon v0.38.21-0.20260113214209-9ac677707f85
230229
github.com/cosmos/admin-module/v2 => github.com/neutron-org/admin-module/v2 v2.0.3
231230
github.com/cosmos/cosmos-sdk => github.com/neutron-org/cosmos-sdk v0.50.15-neutron
232231
// explicitely replace iavl to v1.2.0 cause sometimes go mod tidy uses not right version

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,10 +342,10 @@ github.com/cockroachdb/redact v1.1.5/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZ
342342
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 h1:zuQyyAKVxetITBuuhv3BI9cMrmStnpT18zmgmTxunpo=
343343
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ=
344344
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI=
345+
github.com/cometbft/cometbft v0.38.21 h1:qcIJSH9LiwU5s6ZgKR5eRbsLNucbubfraDs5bzgjtOI=
346+
github.com/cometbft/cometbft v0.38.21/go.mod h1:UCu8dlHqvkAsmAFmWDRWNZJPlu6ya2fTWZlDrWsivwo=
345347
github.com/cometbft/cometbft-db v0.15.0 h1:VLtsRt8udD4jHCyjvrsTBpgz83qne5hnL245AcPJVRk=
346348
github.com/cometbft/cometbft-db v0.15.0/go.mod h1:EBrFs1GDRiTqrWXYi4v90Awf/gcdD5ExzdPbg4X8+mk=
347-
github.com/cometbft/cometbft-sec-tachyon v0.38.21-0.20260113214209-9ac677707f85 h1:xCfV8uIRpj/O6wwoJhGBdUQYBSaVHyxy+aCxV70hnOI=
348-
github.com/cometbft/cometbft-sec-tachyon v0.38.21-0.20260113214209-9ac677707f85/go.mod h1:UCu8dlHqvkAsmAFmWDRWNZJPlu6ya2fTWZlDrWsivwo=
349349
github.com/containerd/continuity v0.3.0 h1:nisirsYROK15TAMVukJOUyGJjz4BNQJBVsNvAXZJ/eg=
350350
github.com/containerd/continuity v0.3.0/go.mod h1:wJEAIwKOm/pBZuBd0JmeTvnLquTB1Ag8espWhkykbPM=
351351
github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=

0 commit comments

Comments
 (0)