Skip to content

Commit

Permalink
go1.15.7 (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
techknowlogick committed Jan 20, 2021
1 parent f5bcc7a commit 0a036e4
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.6'),
BuildStepDry('go-1.14.13'),
BuildStepDry('go-1.15.7'),
BuildStepDry('go-1.14.14'),

BuildStep('base'),
BuildStep('go-1.15.6', 'build-base'),
BuildStep('go-1.15.x', 'build-go-1.15.6'),
BuildStep('go-1.14.13', 'build-base'),
BuildStep('go-1.14.x', 'build-go-1.14.13'),
BuildStep('go-1.15.7', 'build-base'),
BuildStep('go-1.15.x', 'build-go-1.15.7'),
BuildStep('go-1.14.14', 'build-base'),
BuildStep('go-1.14.x', 'build-go-1.14.14'),
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.6
- name: dry-run-go-1.15.7
pull: always
image: plugins/docker
settings:
context: docker/go-1.15.6
dockerfile: docker/go-1.15.6/Dockerfile
context: docker/go-1.15.7
dockerfile: docker/go-1.15.7/Dockerfile
dry_run: true
password:
from_secret: docker_password
repo: techknowlogick/xgo
tags: go-1.15.6
tags: go-1.15.7
username:
from_secret: docker_username
when:
event:
- pull_request

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

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

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

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

This file was deleted.

10 changes: 10 additions & 0 deletions docker/go-1.14.14/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 11414

RUN \
export ROOT_DIST=https://dl.google.com/go/go1.14.14.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=6f1354c9040d65d1622b451f43c324c1e5197aa9242d00c5a117d0e2625f3e0d && \
\
$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.13
FROM techknowlogick/xgo:go-1.14.14
10 changes: 0 additions & 10 deletions docker/go-1.15.6/Dockerfile

This file was deleted.

10 changes: 10 additions & 0 deletions docker/go-1.15.7/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 1157

RUN \
export ROOT_DIST=https://dl.google.com/go/go1.15.7.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=0d142143794721bb63ce6c8a6180c4062bcf8ef4715e7d6d6609f3a8282629b3 && \
\
$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.6
FROM techknowlogick/xgo:go-1.15.7

0 comments on commit 0a036e4

Please sign in to comment.