Skip to content

Commit

Permalink
chore: bump go version in ci (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrolla authored Oct 22, 2021
1 parent 9cb7191 commit de1cff6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: golang:1.14.3
- image: golang:1.17.2
working_directory: /terraform-provider-circleci
steps:
- checkout
Expand All @@ -15,7 +15,6 @@ jobs:
- run:
name: Build
command: |
CGO_ENABLED=0 GOOS=darwin GOARCH=386 go build -mod=vendor -ldflags="-s -w" -a -o build/terraform-provider-circleci-darwin-386
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -mod=vendor -ldflags="-s -w" -a -o build/terraform-provider-circleci-darwin-amd64
CGO_ENABLED=0 GOOS=linux GOARCH=386 go build -mod=vendor -ldflags="-s -w" -a -o build/terraform-provider-circleci-linux-386
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -mod=vendor -ldflags="-s -w" -a -o build/terraform-provider-circleci-linux-amd64
Expand All @@ -41,7 +40,7 @@ jobs:
release:
working_directory: /build
docker:
- image: golang:1.14.3
- image: golang:1.17.2
steps:
- attach_workspace:
at: /
Expand Down

0 comments on commit de1cff6

Please sign in to comment.