Skip to content

Commit 9b20910

Browse files
committed
[add] bumping circleci go images to 1.12. enforcing go modules usage on makefile
1 parent d34a7a2 commit 9b20910

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
4646
build: # test with redisearch:edge
4747
docker:
48-
- image: circleci/golang:1.9
48+
- image: circleci/golang:1.12
4949
- image: redislabs/redisearch:edge
5050

5151
working_directory: /go/src/github.com/RediSearch/redisearch-go
@@ -57,7 +57,7 @@ jobs:
5757

5858
build_nightly: # test nightly with redisearch:edge
5959
docker:
60-
- image: circleci/golang:1.9
60+
- image: circleci/golang:1.12
6161
- image: redislabs/redisearch:edge
6262

6363
working_directory: /go/src/github.com/RediSearch/redisearch-go

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Go parameters
2-
GOCMD=go
2+
GOCMD=GO111MODULE=on go
3+
34
GOBUILD=$(GOCMD) build
45
GOINSTALL=$(GOCMD) install
56
GOCLEAN=$(GOCMD) clean

0 commit comments

Comments
 (0)