This repository was archived by the owner on Aug 29, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ local PipelineTest = {
88 steps: [
99 {
1010 name: 'deps' ,
11- image: 'golang:1.18 ' ,
11+ image: 'golang:1.19 ' ,
1212 commands: [
1313 'make deps' ,
1414 ],
@@ -21,7 +21,7 @@ local PipelineTest = {
2121 },
2222 {
2323 name: 'lint' ,
24- image: 'golang:1.18 ' ,
24+ image: 'golang:1.19 ' ,
2525 commands: [
2626 'make lint' ,
2727 ],
@@ -34,7 +34,7 @@ local PipelineTest = {
3434 },
3535 {
3636 name: 'test' ,
37- image: 'golang:1.18 ' ,
37+ image: 'golang:1.19 ' ,
3838 commands: [
3939 'make test' ,
4040 ],
@@ -68,7 +68,7 @@ local PipelineBuildBinaries = {
6868 steps: [
6969 {
7070 name: 'build' ,
71- image: 'techknowlogick/xgo:go-1.18 .x' ,
71+ image: 'techknowlogick/xgo:go-1.19 .x' ,
7272 commands: [
7373 'make release' ,
7474 ],
@@ -133,7 +133,7 @@ local PipelineBuildContainer(arch='amd64') = {
133133 steps: [
134134 {
135135 name: 'build' ,
136- image: 'golang:1.18 ' ,
136+ image: 'golang:1.19 ' ,
137137 commands: [
138138 'make build' ,
139139 ],
Original file line number Diff line number Diff line change @@ -8,23 +8,23 @@ platform:
88
99steps :
1010 - name : deps
11- image : golang:1.18
11+ image : golang:1.19
1212 commands :
1313 - make deps
1414 volumes :
1515 - name : godeps
1616 path : /go
1717
1818 - name : lint
19- image : golang:1.18
19+ image : golang:1.19
2020 commands :
2121 - make lint
2222 volumes :
2323 - name : godeps
2424 path : /go
2525
2626 - name : test
27- image : golang:1.18
27+ image : golang:1.19
2828 commands :
2929 - make test
3030 volumes :
@@ -51,7 +51,7 @@ platform:
5151
5252steps :
5353 - name : build
54- image : techknowlogick/xgo:go-1.18 .x
54+ image : techknowlogick/xgo:go-1.19 .x
5555 commands :
5656 - make release
5757
@@ -105,7 +105,7 @@ platform:
105105
106106steps :
107107 - name : build
108- image : golang:1.18
108+ image : golang:1.19
109109 commands :
110110 - make build
111111
@@ -177,7 +177,7 @@ platform:
177177
178178steps :
179179 - name : build
180- image : golang:1.18
180+ image : golang:1.19
181181 commands :
182182 - make build
183183
@@ -380,6 +380,6 @@ depends_on:
380380
381381---
382382kind : signature
383- hmac : 42ea59f6cce008de2797e676cc2c4e2fa5abb49f280ede4e600f4d821e0f0ea9
383+ hmac : b3fcec8e8669cb90bbf5cf5e17db99f2b3b813f117a69f43045cefbb59c5c862
384384
385385...
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ GOLANGCI_LINT_PACKAGE ?= github.com/golangci/golangci-lint/cmd/golangci-lint@$(G
1919XGO_PACKAGE ?= src.techknowlogick.com/xgo@latest
2020
2121GENERATE ?=
22- XGO_VERSION := go-1.18 .x
22+ XGO_VERSION := go-1.19 .x
2323XGO_TARGETS ?= linux/amd64,linux/arm-6,linux/arm-7,linux/arm64
2424
2525TAGS ?= netgo
Original file line number Diff line number Diff line change 11module github.com/thegeeklab/drone-docker-buildx
22
3- go 1.18
3+ go 1.19
44
55require (
66 github.com/coreos/go-semver v0.3.0
You can’t perform that action at this time.
0 commit comments