Skip to content

Commit d4f5d94

Browse files
go1.15.3 (#82)
1 parent e9ea30c commit d4f5d94

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.15.2'),
41-
BuildStepDry('go-1.14.9'),
40+
BuildStepDry('go-1.15.3'),
41+
BuildStepDry('go-1.14.10'),
4242

4343
BuildStep('base'),
44-
BuildStep('go-1.15.2', 'build-base'),
45-
BuildStep('go-1.15.x', 'build-go-1.15.2'),
46-
BuildStep('go-1.14.9', 'build-base'),
47-
BuildStep('go-1.14.x', 'build-go-1.14.9'),
44+
BuildStep('go-1.15.3', 'build-base'),
45+
BuildStep('go-1.15.x', 'build-go-1.15.3'),
46+
BuildStep('go-1.14.10', 'build-base'),
47+
BuildStep('go-1.14.x', 'build-go-1.14.10'),
4848
BuildWithDiffTags('go-latest', 'latest', 'build-go-1.15.x'),
4949
]
5050
}

.drone.yml

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

27-
- name: dry-run-go-1.15.2
27+
- name: dry-run-go-1.15.3
2828
pull: always
2929
image: plugins/docker
3030
settings:
31-
context: docker/go-1.15.2
32-
dockerfile: docker/go-1.15.2/Dockerfile
31+
context: docker/go-1.15.3
32+
dockerfile: docker/go-1.15.3/Dockerfile
3333
dry_run: true
3434
password:
3535
from_secret: docker_password
3636
repo: techknowlogick/xgo
37-
tags: go-1.15.2
37+
tags: go-1.15.3
3838
username:
3939
from_secret: docker_username
4040
when:
4141
event:
4242
- pull_request
4343

44-
- name: dry-run-go-1.14.9
44+
- name: dry-run-go-1.14.10
4545
pull: always
4646
image: plugins/docker
4747
settings:
48-
context: docker/go-1.14.9
49-
dockerfile: docker/go-1.14.9/Dockerfile
48+
context: docker/go-1.14.10
49+
dockerfile: docker/go-1.14.10/Dockerfile
5050
dry_run: true
5151
password:
5252
from_secret: docker_password
5353
repo: techknowlogick/xgo
54-
tags: go-1.14.9
54+
tags: go-1.14.10
5555
username:
5656
from_secret: docker_username
5757
when:
@@ -77,16 +77,16 @@ steps:
7777
exclude:
7878
- pull_request
7979

80-
- name: build-go-1.15.2
80+
- name: build-go-1.15.3
8181
pull: always
8282
image: plugins/docker
8383
settings:
84-
context: docker/go-1.15.2
85-
dockerfile: docker/go-1.15.2/Dockerfile
84+
context: docker/go-1.15.3
85+
dockerfile: docker/go-1.15.3/Dockerfile
8686
password:
8787
from_secret: docker_password
8888
repo: techknowlogick/xgo
89-
tags: go-1.15.2
89+
tags: go-1.15.3
9090
username:
9191
from_secret: docker_username
9292
when:
@@ -117,18 +117,18 @@ steps:
117117
exclude:
118118
- pull_request
119119
depends_on:
120-
- build-go-1.15.2
120+
- build-go-1.15.3
121121

122-
- name: build-go-1.14.9
122+
- name: build-go-1.14.10
123123
pull: always
124124
image: plugins/docker
125125
settings:
126-
context: docker/go-1.14.9
127-
dockerfile: docker/go-1.14.9/Dockerfile
126+
context: docker/go-1.14.10
127+
dockerfile: docker/go-1.14.10/Dockerfile
128128
password:
129129
from_secret: docker_password
130130
repo: techknowlogick/xgo
131-
tags: go-1.14.9
131+
tags: go-1.14.10
132132
username:
133133
from_secret: docker_username
134134
when:
@@ -159,7 +159,7 @@ steps:
159159
exclude:
160160
- pull_request
161161
depends_on:
162-
- build-go-1.14.9
162+
- build-go-1.14.10
163163

164164
- name: build-go-latest
165165
pull: always

docker/go-1.14.10/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 11410
5+
6+
RUN \
7+
export ROOT_DIST=https://dl.google.com/go/go1.14.10.linux-amd64.tar.gz && \
8+
export ROOT_DIST_SHA=66eb6858f375731ba07b0b33f5c813b141a81253e7e74071eec3ae85e9b37098 && \
9+
\
10+
$BOOTSTRAP_PURE

docker/go-1.14.9/Dockerfile

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

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.9
1+
FROM techknowlogick/xgo:go-1.14.10

docker/go-1.15.2/Dockerfile

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

docker/go-1.15.3/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 1153
5+
6+
RUN \
7+
export ROOT_DIST=https://dl.google.com/go/go1.15.3.linux-amd64.tar.gz && \
8+
export ROOT_DIST_SHA=010a88df924a81ec21b293b5da8f9b11c176d27c0ee3962dc1738d2352d3c02d && \
9+
\
10+
$BOOTSTRAP_PURE

docker/go-1.15.x/Dockerfile

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

0 commit comments

Comments
 (0)