Merge pull request #46 from Clever/go1.13

Upgrade go to v1.13
This commit is contained in:
Taylor Sutton 2019-10-18 11:36:05 -07:00 committed by GitHub
commit e7db80a35a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ jobs:
build: build:
working_directory: /go/src/github.com/Clever/amazon-kinesis-client-go working_directory: /go/src/github.com/Clever/amazon-kinesis-client-go
docker: docker:
- image: circleci/golang:1.12-stretch - image: circleci/golang:1.13-stretch
- image: circleci/mongo:3.2.20-jessie-ram - image: circleci/mongo:3.2.20-jessie-ram
environment: environment:
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts CIRCLE_ARTIFACTS: /tmp/circleci-artifacts

View file

@ -5,7 +5,7 @@ SHELL := /bin/bash
PKG := github.com/Clever/amazon-kinesis-client-go PKG := github.com/Clever/amazon-kinesis-client-go
PKGS := $(shell go list ./... | grep -v /vendor ) PKGS := $(shell go list ./... | grep -v /vendor )
.PHONY: download_jars run build .PHONY: download_jars run build
$(eval $(call golang-version-check,1.12)) $(eval $(call golang-version-check,1.13))
CONSUMER ?= consumer CONSUMER ?= consumer
TMP_DIR := ./tmp-jars TMP_DIR := ./tmp-jars