From d5bc65eed42082060c155aa8eb0ed6c671557749 Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Wed, 24 Feb 2021 23:20:16 +0300 Subject: [PATCH] circleci: update Go build version --- .circleci/config.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 13efe8051..b6c61f5dd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,6 +13,11 @@ executors: - image: circleci/golang:1.14 environment: GO111MODULE: "on" + go1_15: + docker: + - image: circleci/golang:1.15 + environment: + GO111MODULE: "on" commands: gomod: @@ -29,7 +34,7 @@ commands: jobs: lint: working_directory: /go/src/github.com/nspcc-dev/neo-go - executor: go1_14 + executor: go1_15 steps: - checkout - gomod @@ -41,7 +46,7 @@ jobs: vet: working_directory: /go/src/github.com/nspcc-dev/neo-go - executor: go1_14 + executor: go1_15 steps: - checkout - gomod @@ -71,7 +76,7 @@ jobs: test_cover: working_directory: /go/src/github.com/nspcc-dev/neo-go - executor: go1_14 + executor: go1_15 environment: CGO_ENABLED: 0 steps: @@ -85,7 +90,7 @@ jobs: build_cli: working_directory: /go/src/github.com/nspcc-dev/neo-go - executor: go1_14 + executor: go1_15 steps: - checkout - gomod @@ -96,7 +101,7 @@ jobs: build_image: working_directory: /go/src/github.com/nspcc-dev/neo-go - executor: go1_14 + executor: go1_15 docker: - image: golang:1-alpine steps: