Add go 1.18 support; set Dockerfile to go 1.18 (#325)

This commit is contained in:
Scott Blum 2022-07-25 11:54:27 -04:00 committed by GitHub
parent 8093376ece
commit 0d0992e6a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 25 deletions

View File

@ -5,7 +5,12 @@ shared_configs:
name: Run tests name: Run tests
command: | command: |
make deps test make deps test
full_job_steps: &full_job_steps
- checkout
- run:
name: Run tests
command: |
make ci
# 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
@ -13,38 +18,25 @@ jobs:
build-1-15: build-1-15:
working_directory: ~/repo working_directory: ~/repo
docker: docker:
- image: circleci/golang:1.15 - image: cimg/go:1.15
steps: *simple_job_steps steps: *simple_job_steps
build-1-16: build-1-16:
working_directory: ~/repo working_directory: ~/repo
docker: docker:
- image: circleci/golang:1.16 - image: cimg/go:1.16
steps: steps: *full_job_steps
- checkout
- restore_cache:
keys:
- go-mod-v4-{{ checksum "go.sum" }}
- run:
name: Install Dependencies
command: go mod download
- save_cache:
key: go-mod-v4-{{ checksum "go.sum" }}
paths:
- "/go/pkg/mod"
- run:
name: Run tests
command: |
#mkdir -p /tmp/test-reports
#gotestsum --junitfile /tmp/test-reports/unit-tests.xml
make ci
#- store_test_results:
# path: /tmp/test-reports
build-1-17: build-1-17:
working_directory: ~/repo working_directory: ~/repo
docker: docker:
- image: circleci/golang:1.17 - image: cimg/go:1.17
steps: *simple_job_steps
build-1-18:
working_directory: ~/repo
docker:
- image: cimg/go:1.18
steps: *simple_job_steps steps: *simple_job_steps
workflows: workflows:
@ -53,3 +45,4 @@ workflows:
- build-1-15 - build-1-15
- build-1-16 - build-1-16
- build-1-17 - build-1-17
- build-1-18

View File

@ -1,4 +1,4 @@
FROM golang:1.15-alpine as builder FROM golang:1.18-alpine as builder
MAINTAINER FullStory Engineering MAINTAINER FullStory Engineering
# create non-privileged group and user # create non-privileged group and user