Skip to content

Commit

Permalink
go1.15.4 (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
techknowlogick authored Nov 5, 2020
1 parent 54d7d44 commit 06579e8
Show file tree
Hide file tree
Showing 8 changed files with 46 additions and 46 deletions.
12 changes: 6 additions & 6 deletions .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ kind: 'pipeline',
name: 'default',
steps: [
BuildStepDry('base'),
BuildStepDry('go-1.15.3'),
BuildStepDry('go-1.14.10'),
BuildStepDry('go-1.15.4'),
BuildStepDry('go-1.14.11'),

BuildStep('base'),
BuildStep('go-1.15.3', 'build-base'),
BuildStep('go-1.15.x', 'build-go-1.15.3'),
BuildStep('go-1.14.10', 'build-base'),
BuildStep('go-1.14.x', 'build-go-1.14.10'),
BuildStep('go-1.15.4', 'build-base'),
BuildStep('go-1.15.x', 'build-go-1.15.4'),
BuildStep('go-1.14.11', 'build-base'),
BuildStep('go-1.14.x', 'build-go-1.14.11'),
BuildWithDiffTags('go-latest', 'latest', 'build-go-1.15.x'),
]
}
36 changes: 18 additions & 18 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,34 +24,34 @@ steps:
event:
- pull_request

- name: dry-run-go-1.15.3
- name: dry-run-go-1.15.4
pull: always
image: plugins/docker
settings:
context: docker/go-1.15.3
dockerfile: docker/go-1.15.3/Dockerfile
context: docker/go-1.15.4
dockerfile: docker/go-1.15.4/Dockerfile
dry_run: true
password:
from_secret: docker_password
repo: techknowlogick/xgo
tags: go-1.15.3
tags: go-1.15.4
username:
from_secret: docker_username
when:
event:
- pull_request

- name: dry-run-go-1.14.10
- name: dry-run-go-1.14.11
pull: always
image: plugins/docker
settings:
context: docker/go-1.14.10
dockerfile: docker/go-1.14.10/Dockerfile
context: docker/go-1.14.11
dockerfile: docker/go-1.14.11/Dockerfile
dry_run: true
password:
from_secret: docker_password
repo: techknowlogick/xgo
tags: go-1.14.10
tags: go-1.14.11
username:
from_secret: docker_username
when:
Expand All @@ -77,16 +77,16 @@ steps:
exclude:
- pull_request

- name: build-go-1.15.3
- name: build-go-1.15.4
pull: always
image: plugins/docker
settings:
context: docker/go-1.15.3
dockerfile: docker/go-1.15.3/Dockerfile
context: docker/go-1.15.4
dockerfile: docker/go-1.15.4/Dockerfile
password:
from_secret: docker_password
repo: techknowlogick/xgo
tags: go-1.15.3
tags: go-1.15.4
username:
from_secret: docker_username
when:
Expand Down Expand Up @@ -117,18 +117,18 @@ steps:
exclude:
- pull_request
depends_on:
- build-go-1.15.3
- build-go-1.15.4

- name: build-go-1.14.10
- name: build-go-1.14.11
pull: always
image: plugins/docker
settings:
context: docker/go-1.14.10
dockerfile: docker/go-1.14.10/Dockerfile
context: docker/go-1.14.11
dockerfile: docker/go-1.14.11/Dockerfile
password:
from_secret: docker_password
repo: techknowlogick/xgo
tags: go-1.14.10
tags: go-1.14.11
username:
from_secret: docker_username
when:
Expand Down Expand Up @@ -159,7 +159,7 @@ steps:
exclude:
- pull_request
depends_on:
- build-go-1.14.10
- build-go-1.14.11

- name: build-go-latest
pull: always
Expand Down
10 changes: 0 additions & 10 deletions docker/go-1.14.10/Dockerfile

This file was deleted.

10 changes: 10 additions & 0 deletions docker/go-1.14.11/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM techknowlogick/xgo:base

# Configure the root Go distribution and bootstrap based on it
ENV GO_VERSION 11411

RUN \
export ROOT_DIST=https://dl.google.com/go/go1.14.11.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=ef150041e1af0890ecdd98ebdd6c759096884052a584c09ce50b2b5bb9bab2cd && \
\
$BOOTSTRAP_PURE
2 changes: 1 addition & 1 deletion docker/go-1.14.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM techknowlogick/xgo:go-1.14.10
FROM techknowlogick/xgo:go-1.14.11
10 changes: 0 additions & 10 deletions docker/go-1.15.3/Dockerfile

This file was deleted.

10 changes: 10 additions & 0 deletions docker/go-1.15.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM techknowlogick/xgo:base

# Configure the root Go distribution and bootstrap based on it
ENV GO_VERSION 1154

RUN \
export ROOT_DIST=https://dl.google.com/go/go1.15.4.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=eb61005f0b932c93b424a3a4eaa67d72196c79129d9a3ea8578047683e2c80d5 && \
\
$BOOTSTRAP_PURE
2 changes: 1 addition & 1 deletion docker/go-1.15.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM techknowlogick/xgo:go-1.15.3
FROM techknowlogick/xgo:go-1.15.4

0 comments on commit 06579e8

Please sign in to comment.