Skip to content

Commit 0296e71

Browse files
authored
feat nv25 (#1999)
1 parent b6ed3dc commit 0296e71

File tree

20 files changed

+2082
-1068
lines changed

20 files changed

+2082
-1068
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ orbs:
66
executors:
77
golang:
88
docker:
9-
- image: cimg/go:1.22.3
9+
- image: cimg/go:1.23.7
1010
resource_class: 2xlarge
1111
ubuntu:
1212
docker:
@@ -87,7 +87,7 @@ jobs:
8787
lid-docker-compose:
8888
description: 'Run LID integration tests'
8989
docker:
90-
- image: cimg/go:1.22 # Primary container to run Go tests
90+
- image: cimg/go:1.23.7 # Primary container to run Go tests
9191
environment:
9292
YUGABYTE_HOST: yugabyte
9393
- image: yugabytedb/yugabyte:2024.1.3.0-b105 # Service container for YugabyteDB
@@ -172,7 +172,7 @@ jobs:
172172
linux: false
173173
darwin: true
174174
- golang/install:
175-
version: "1.22.3"
175+
version: "1.23.7"
176176
- run:
177177
name: Install pkg-config
178178
command: HOMEBREW_NO_AUTO_UPDATE=1 brew install pkg-config
@@ -271,7 +271,7 @@ jobs:
271271
default: golang
272272
golangci-lint-version:
273273
type: string
274-
default: 1.56.2
274+
default: 1.60.1
275275
concurrency:
276276
type: string
277277
default: '2'

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- main
1010

1111
env:
12-
GO_VERSION: 1.22.3
12+
GO_VERSION: 1.23.7
1313

1414
jobs:
1515
ci-lint:
@@ -144,7 +144,7 @@ jobs:
144144

145145
- name: Install golangci-lint
146146
run: |
147-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.58.1
147+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.60.1
148148
shell: bash
149149

150150
- name: Lint

cmd/boost/wallet_cmd.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ var walletBalance = &cli.Command{
303303
}
304304
return cmd.PrintJson(out)
305305
} else {
306-
afmt.Printf(fmt.Sprintf("%s (warning: %s)\n", types.FIL(balance), warningMessage))
306+
afmt.Printf("%s", fmt.Sprintf("%s (warning: %s)\n", types.FIL(balance), warningMessage))
307307
}
308308
} else {
309309
if cctx.Bool("json") {

cmd/boostd/init.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ func initBoost(ctx context.Context, cctx *cli.Context, marketsRepo lotus_repo.Lo
218218
if !v.APIVersion.EqMajorMinor(lapi.FullAPIVersion1) {
219219
msg := fmt.Sprintf("Remote API version didn't match (expected %s, remote %s)",
220220
lapi.FullAPIVersion1, v.APIVersion)
221-
return nil, fmt.Errorf(msg + ". Boost and Lotus Daemon must have the same API version")
221+
return nil, fmt.Errorf("%s. Boost and Lotus Daemon must have the same API version", msg)
222222
}
223223

224224
fmt.Println("Creating boost repo")

0 commit comments

Comments
 (0)