Skip to content

Commit 7f79ba7

Browse files
go1.15.5 (#85)
1 parent 84d5449 commit 7f79ba7

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.4'),
41-
BuildStepDry('go-1.14.11'),
40+
BuildStepDry('go-1.15.5'),
41+
BuildStepDry('go-1.14.12'),
4242

4343
BuildStep('base'),
44-
BuildStep('go-1.15.4', 'build-base'),
45-
BuildStep('go-1.15.x', 'build-go-1.15.4'),
46-
BuildStep('go-1.14.11', 'build-base'),
47-
BuildStep('go-1.14.x', 'build-go-1.14.11'),
44+
BuildStep('go-1.15.5', 'build-base'),
45+
BuildStep('go-1.15.x', 'build-go-1.15.5'),
46+
BuildStep('go-1.14.12', 'build-base'),
47+
BuildStep('go-1.14.x', 'build-go-1.14.12'),
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.4
27+
- name: dry-run-go-1.15.5
2828
pull: always
2929
image: plugins/docker
3030
settings:
31-
context: docker/go-1.15.4
32-
dockerfile: docker/go-1.15.4/Dockerfile
31+
context: docker/go-1.15.5
32+
dockerfile: docker/go-1.15.5/Dockerfile
3333
dry_run: true
3434
password:
3535
from_secret: docker_password
3636
repo: techknowlogick/xgo
37-
tags: go-1.15.4
37+
tags: go-1.15.5
3838
username:
3939
from_secret: docker_username
4040
when:
4141
event:
4242
- pull_request
4343

44-
- name: dry-run-go-1.14.11
44+
- name: dry-run-go-1.14.12
4545
pull: always
4646
image: plugins/docker
4747
settings:
48-
context: docker/go-1.14.11
49-
dockerfile: docker/go-1.14.11/Dockerfile
48+
context: docker/go-1.14.12
49+
dockerfile: docker/go-1.14.12/Dockerfile
5050
dry_run: true
5151
password:
5252
from_secret: docker_password
5353
repo: techknowlogick/xgo
54-
tags: go-1.14.11
54+
tags: go-1.14.12
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.4
80+
- name: build-go-1.15.5
8181
pull: always
8282
image: plugins/docker
8383
settings:
84-
context: docker/go-1.15.4
85-
dockerfile: docker/go-1.15.4/Dockerfile
84+
context: docker/go-1.15.5
85+
dockerfile: docker/go-1.15.5/Dockerfile
8686
password:
8787
from_secret: docker_password
8888
repo: techknowlogick/xgo
89-
tags: go-1.15.4
89+
tags: go-1.15.5
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.4
120+
- build-go-1.15.5
121121

122-
- name: build-go-1.14.11
122+
- name: build-go-1.14.12
123123
pull: always
124124
image: plugins/docker
125125
settings:
126-
context: docker/go-1.14.11
127-
dockerfile: docker/go-1.14.11/Dockerfile
126+
context: docker/go-1.14.12
127+
dockerfile: docker/go-1.14.12/Dockerfile
128128
password:
129129
from_secret: docker_password
130130
repo: techknowlogick/xgo
131-
tags: go-1.14.11
131+
tags: go-1.14.12
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.11
162+
- build-go-1.14.12
163163

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

docker/go-1.14.11/Dockerfile

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

docker/go-1.14.12/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 11412
5+
6+
RUN \
7+
export ROOT_DIST=https://dl.google.com/go/go1.14.12.linux-amd64.tar.gz && \
8+
export ROOT_DIST_SHA=fb26f951c88c0685d7df393611189c58e6eabd3c17bdaef37df11355ab8db9d3 && \
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.11
1+
FROM techknowlogick/xgo:go-1.14.12

docker/go-1.15.4/Dockerfile

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

docker/go-1.15.5/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 1155
5+
6+
RUN \
7+
export ROOT_DIST=https://dl.google.com/go/go1.15.5.linux-amd64.tar.gz && \
8+
export ROOT_DIST_SHA=9a58494e8da722c3aef248c9227b0e9c528c7318309827780f16220998180a0d && \
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.4
1+
FROM techknowlogick/xgo:go-1.15.5

0 commit comments

Comments
 (0)