go.mod already states that 1.15 is needed; latest deps now require 1.15, so officially removing 1.14
This commit is contained in:
parent
b34b13bab3
commit
f351c85a77
|
|
@ -10,12 +10,6 @@ shared_configs:
|
||||||
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
|
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
|
||||||
version: 2.1
|
version: 2.1
|
||||||
jobs:
|
jobs:
|
||||||
build-1-14:
|
|
||||||
working_directory: ~/repo
|
|
||||||
docker:
|
|
||||||
- image: circleci/golang:1.14
|
|
||||||
steps: *simple_job_steps
|
|
||||||
|
|
||||||
build-1-15:
|
build-1-15:
|
||||||
working_directory: ~/repo
|
working_directory: ~/repo
|
||||||
docker:
|
docker:
|
||||||
|
|
@ -56,7 +50,6 @@ jobs:
|
||||||
workflows:
|
workflows:
|
||||||
pr-build-test:
|
pr-build-test:
|
||||||
jobs:
|
jobs:
|
||||||
- build-1-14
|
|
||||||
- build-1-15
|
- build-1-15
|
||||||
- build-1-16
|
- build-1-16
|
||||||
- build-1-17
|
- build-1-17
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue