Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to go 1.15 #87

Merged
merged 2 commits into from
Oct 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile.plugins
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM golang:1.12
FROM golang:1.15
ENV GO111MODULE on
davidnewhall marked this conversation as resolved.
Show resolved Hide resolved
RUN go env -w GOPROXY=direct

ARG KINESIS_PLUGIN_CLONE_URL=https://github.com/aws/amazon-kinesis-streams-for-fluent-bit.git
ARG KINESIS_PLUGIN_TAG=v1.6.1
Expand Down
6 changes: 3 additions & 3 deletions buildspec.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: 0.2
version: 0.2
phases:
install:
runtime-versions:
golang: 1.12
golang: 1.15
pre_build:
commands:
- echo Building the AWS for Fluent Bit image
Expand All @@ -11,7 +11,7 @@ phases:
# Command to build your project
- make release

# List the docker images
# List the docker images
- docker images

# Push the image to ECR in the same account and same region the pipeline is hosted.
Expand Down
2 changes: 1 addition & 1 deletion buildspec_integ.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 0.2
phases:
install:
runtime-versions:
golang: 1.12
golang: 1.15
pre_build:
commands:
- echo Running the integration test
Expand Down
2 changes: 1 addition & 1 deletion buildspec_publish_dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 0.2
phases:
install:
runtime-versions:
golang: 1.12
golang: 1.15
pre_build:
commands:
- echo Publish the image to DockerHub
Expand Down
2 changes: 1 addition & 1 deletion buildspec_publish_ecr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 0.2
phases:
install:
runtime-versions:
golang: 1.12
golang: 1.15
pre_build:
commands:
- echo Publish the image to ECR
Expand Down
2 changes: 1 addition & 1 deletion buildspec_publish_ssm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 0.2
phases:
install:
runtime-versions:
golang: 1.12
golang: 1.15
pre_build:
commands:
- echo Publish SSM parameters
Expand Down
2 changes: 1 addition & 1 deletion buildspec_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 0.2
phases:
install:
runtime-versions:
golang: 1.12
golang: 1.15
pre_build:
commands:
- echo Sync latest image from Dockerhub
Expand Down
2 changes: 1 addition & 1 deletion integ/s3/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module kinesis-integ-test

go 1.12
go 1.15

require github.com/aws/aws-sdk-go v1.25.3