Skip to content

Commit

Permalink
add go 1.17 to CI testing; no more go 1.12 (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhump authored Oct 1, 2021
1 parent 0faa5aa commit 69e5c3b
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,6 @@ shared_configs:
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1
jobs:
build-1-12:
working_directory: ~/repo
docker:
- image: circleci/golang:1.12
environment:
GO111MODULE: "on"
steps: *simple_job_steps

build-1-13:
working_directory: ~/repo
docker:
Expand All @@ -34,8 +26,12 @@ jobs:
working_directory: ~/repo
docker:
- image: circleci/golang:1.15
environment:
GO111MODULE: "on"
steps: *simple_job_steps

build-1-16:
working_directory: ~/repo
docker:
- image: circleci/golang:1.16
steps:
- checkout
- restore_cache:
Expand All @@ -57,17 +53,17 @@ jobs:
#- store_test_results:
# path: /tmp/test-reports

build-1-16:
build-1-17:
working_directory: ~/repo
docker:
- image: circleci/golang:1.16
- image: circleci/golang:1.17
steps: *simple_job_steps

workflows:
pr-build-test:
jobs:
- build-1-12
- build-1-13
- build-1-14
- build-1-15
- build-1-16
- build-1-17

0 comments on commit 69e5c3b

Please sign in to comment.