mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-05-09 19:30:35 +02:00
build: update to Go 1.18
This commit is contained in:
parent
4bdc3c9a5b
commit
a90dfff9a5
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@ -24,7 +24,7 @@ env:
|
|||||||
# /dev.Dockerfile
|
# /dev.Dockerfile
|
||||||
# /make/builder.Dockerfile
|
# /make/builder.Dockerfile
|
||||||
# /.github/workflows/release.yml
|
# /.github/workflows/release.yml
|
||||||
GO_VERSION: 1.17.3
|
GO_VERSION: 1.18
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
########################
|
########################
|
||||||
|
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
@ -16,7 +16,7 @@ env:
|
|||||||
# /dev.Dockerfile
|
# /dev.Dockerfile
|
||||||
# /make/builder.Dockerfile
|
# /make/builder.Dockerfile
|
||||||
# /.github/workflows/main.yml
|
# /.github/workflows/main.yml
|
||||||
GO_VERSION: 1.17.3
|
GO_VERSION: 1.18
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
main:
|
main:
|
||||||
|
@ -21,7 +21,7 @@ go:
|
|||||||
# /make/builder.Dockerfile
|
# /make/builder.Dockerfile
|
||||||
# /.github/workflows/main.yml
|
# /.github/workflows/main.yml
|
||||||
# /.github/workflows/release.yml
|
# /.github/workflows/release.yml
|
||||||
- "1.17.x"
|
- "1.18.x"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# /make/builder.Dockerfile
|
# /make/builder.Dockerfile
|
||||||
# /.github/workflows/main.yml
|
# /.github/workflows/main.yml
|
||||||
# /.github/workflows/release.yml
|
# /.github/workflows/release.yml
|
||||||
FROM golang:1.17.3-alpine as builder
|
FROM golang:1.18-alpine as builder
|
||||||
|
|
||||||
# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
|
# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
|
||||||
# queries required to connect to linked containers succeed.
|
# queries required to connect to linked containers succeed.
|
||||||
|
@ -175,7 +175,7 @@ func TestHistoricalConfDetailsTxIndex(t *testing.T) {
|
|||||||
switch txStatus {
|
switch txStatus {
|
||||||
case chainntnfs.TxFoundMempool:
|
case chainntnfs.TxFoundMempool:
|
||||||
default:
|
default:
|
||||||
t.Fatal("should have found the transaction within the "+
|
t.Fatalf("should have found the transaction within the "+
|
||||||
"mempool, but did not: %v", txStatus)
|
"mempool, but did not: %v", txStatus)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2009,7 +2009,7 @@ func TestDeDuplicatedAnnouncements(t *testing.T) {
|
|||||||
// indexes as due to the randomized order of map iteration they may be
|
// indexes as due to the randomized order of map iteration they may be
|
||||||
// in either place.
|
// in either place.
|
||||||
if !reflect.DeepEqual(batch[2].msg, na) && !reflect.DeepEqual(batch[3].msg, na) {
|
if !reflect.DeepEqual(batch[2].msg, na) && !reflect.DeepEqual(batch[3].msg, na) {
|
||||||
t.Fatal("first node announcement not in last part of batch: "+
|
t.Fatalf("first node announcement not in last part of batch: "+
|
||||||
"got %v, expected %v", batch[2].msg,
|
"got %v, expected %v", batch[2].msg,
|
||||||
na)
|
na)
|
||||||
}
|
}
|
||||||
|
@ -2125,7 +2125,7 @@ func TestGossipSyncerSyncTransitions(t *testing.T) {
|
|||||||
select {
|
select {
|
||||||
case msgs := <-msgChan:
|
case msgs := <-msgChan:
|
||||||
if len(msgs) != 1 {
|
if len(msgs) != 1 {
|
||||||
t.Fatal("expected to send a single message at "+
|
t.Fatalf("expected to send a single message at "+
|
||||||
"a time, got %d", len(msgs))
|
"a time, got %d", len(msgs))
|
||||||
}
|
}
|
||||||
msgSent = msgs[0]
|
msgSent = msgs[0]
|
||||||
|
@ -490,7 +490,7 @@ func TestCircuitMapPersistence(t *testing.T) {
|
|||||||
// Removing already-removed circuit should return an error.
|
// Removing already-removed circuit should return an error.
|
||||||
err = circuitMap.DeleteCircuits(circuit1.Incoming)
|
err = circuitMap.DeleteCircuits(circuit1.Incoming)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal("Unexpected failure when deleting already "+
|
t.Fatalf("Unexpected failure when deleting already "+
|
||||||
"deleted circuit: %v", err)
|
"deleted circuit: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -203,7 +203,7 @@ func testQueryRoutes(t *testing.T, useMissionControl bool, useMsat bool,
|
|||||||
route.Vertex, error) {
|
route.Vertex, error) {
|
||||||
|
|
||||||
if chanID != 555 {
|
if chanID != 555 {
|
||||||
t.Fatal("expected endpoints to be fetched for "+
|
t.Fatalf("expected endpoints to be fetched for "+
|
||||||
"channel 555, but got %v instead",
|
"channel 555, but got %v instead",
|
||||||
chanID)
|
chanID)
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# /dev.Dockerfile
|
# /dev.Dockerfile
|
||||||
# /.github/workflows/main.yml
|
# /.github/workflows/main.yml
|
||||||
# /.github/workflows/release.yml
|
# /.github/workflows/release.yml
|
||||||
FROM golang:1.17.3-buster
|
FROM golang:1.18-buster
|
||||||
|
|
||||||
MAINTAINER Olaoluwa Osuntokun <laolu@lightning.engineering>
|
MAINTAINER Olaoluwa Osuntokun <laolu@lightning.engineering>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user