Skip to content

Commit 357d34c

Browse files
go1.14.6 (#72)
1 parent 96de19c commit 357d34c

File tree

8 files changed

+46
-46
lines changed

8 files changed

+46
-46
lines changed

.drone.jsonnet

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ kind: 'pipeline',
3737
name: 'default',
3838
steps: [
3939
BuildStepDry('base'),
40-
BuildStepDry('go-1.14.5', 'dry-run-base'),
41-
BuildStepDry('go-1.13.13', 'dry-run-base'),
40+
BuildStepDry('go-1.14.6', 'dry-run-base'),
41+
BuildStepDry('go-1.13.14', 'dry-run-base'),
4242

4343
BuildStep('base'),
44-
BuildStep('go-1.14.5', 'build-base'),
45-
BuildStep('go-1.14.x', 'build-go-1.14.5'),
46-
BuildStep('go-1.13.13', 'build-base'),
47-
BuildStep('go-1.13.x', 'build-go-1.13.13'),
44+
BuildStep('go-1.14.6', 'build-base'),
45+
BuildStep('go-1.14.x', 'build-go-1.14.6'),
46+
BuildStep('go-1.13.14', 'build-base'),
47+
BuildStep('go-1.13.x', 'build-go-1.13.14'),
4848
BuildWithDiffTags('go-latest', 'latest', 'build-go-1.14.x'),
4949
]
5050
}

.drone.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ steps:
2424
event:
2525
- pull_request
2626

27-
- name: dry-run-go-1.14.5
27+
- name: dry-run-go-1.14.6
2828
pull: always
2929
image: plugins/docker
3030
settings:
31-
context: docker/go-1.14.5
32-
dockerfile: docker/go-1.14.5/Dockerfile
31+
context: docker/go-1.14.6
32+
dockerfile: docker/go-1.14.6/Dockerfile
3333
dry_run: true
3434
password:
3535
from_secret: docker_password
3636
repo: techknowlogick/xgo
37-
tags: go-1.14.5
37+
tags: go-1.14.6
3838
username:
3939
from_secret: docker_username
4040
when:
@@ -43,17 +43,17 @@ steps:
4343
depends_on:
4444
- dry-run-base
4545

46-
- name: dry-run-go-1.13.13
46+
- name: dry-run-go-1.13.14
4747
pull: always
4848
image: plugins/docker
4949
settings:
50-
context: docker/go-1.13.13
51-
dockerfile: docker/go-1.13.13/Dockerfile
50+
context: docker/go-1.13.14
51+
dockerfile: docker/go-1.13.14/Dockerfile
5252
dry_run: true
5353
password:
5454
from_secret: docker_password
5555
repo: techknowlogick/xgo
56-
tags: go-1.13.13
56+
tags: go-1.13.14
5757
username:
5858
from_secret: docker_username
5959
when:
@@ -81,16 +81,16 @@ steps:
8181
exclude:
8282
- pull_request
8383

84-
- name: build-go-1.14.5
84+
- name: build-go-1.14.6
8585
pull: always
8686
image: plugins/docker
8787
settings:
88-
context: docker/go-1.14.5
89-
dockerfile: docker/go-1.14.5/Dockerfile
88+
context: docker/go-1.14.6
89+
dockerfile: docker/go-1.14.6/Dockerfile
9090
password:
9191
from_secret: docker_password
9292
repo: techknowlogick/xgo
93-
tags: go-1.14.5
93+
tags: go-1.14.6
9494
username:
9595
from_secret: docker_username
9696
when:
@@ -121,18 +121,18 @@ steps:
121121
exclude:
122122
- pull_request
123123
depends_on:
124-
- build-go-1.14.5
124+
- build-go-1.14.6
125125

126-
- name: build-go-1.13.13
126+
- name: build-go-1.13.14
127127
pull: always
128128
image: plugins/docker
129129
settings:
130-
context: docker/go-1.13.13
131-
dockerfile: docker/go-1.13.13/Dockerfile
130+
context: docker/go-1.13.14
131+
dockerfile: docker/go-1.13.14/Dockerfile
132132
password:
133133
from_secret: docker_password
134134
repo: techknowlogick/xgo
135-
tags: go-1.13.13
135+
tags: go-1.13.14
136136
username:
137137
from_secret: docker_username
138138
when:
@@ -163,7 +163,7 @@ steps:
163163
exclude:
164164
- pull_request
165165
depends_on:
166-
- build-go-1.13.13
166+
- build-go-1.13.14
167167

168168
- name: build-go-latest
169169
pull: always

docker/go-1.13.13/Dockerfile

Lines changed: 0 additions & 10 deletions
This file was deleted.

docker/go-1.13.14/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM techknowlogick/xgo:base
2+
3+
# Configure the root Go distribution and bootstrap based on it
4+
ENV GO_VERSION 11314
5+
6+
RUN \
7+
export ROOT_DIST=https://dl.google.com/go/go1.13.14.linux-amd64.tar.gz && \
8+
export ROOT_DIST_SHA=32617db984b18308f2b00279c763bff060d2739229cb8037217a49c9e691b46a && \
9+
\
10+
$BOOTSTRAP_PURE

docker/go-1.13.x/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
#
44
# Released under the MIT license.
55

6-
FROM techknowlogick/xgo:go-1.13.13
6+
FROM techknowlogick/xgo:go-1.13.14

docker/go-1.14.5/Dockerfile

Lines changed: 0 additions & 10 deletions
This file was deleted.

docker/go-1.14.6/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM techknowlogick/xgo:base
2+
3+
# Configure the root Go distribution and bootstrap based on it
4+
ENV GO_VERSION 1146
5+
6+
RUN \
7+
export ROOT_DIST=https://dl.google.com/go/go1.14.6.linux-amd64.tar.gz && \
8+
export ROOT_DIST_SHA=5c566ddc2e0bcfc25c26a5dc44a440fcc0177f7350c1f01952b34d5989a0d287 && \
9+
\
10+
$BOOTSTRAP_PURE

docker/go-1.14.x/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM techknowlogick/xgo:go-1.14.5
1+
FROM techknowlogick/xgo:go-1.14.6

0 commit comments

Comments
 (0)