Skip to content

Commit

Permalink
#411 update to use golang 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
sameeraaperera committed May 13, 2022
1 parent eac6824 commit 3487e8a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ci/docker-compose-cmppg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
timeout: '1s'
retries: 50
tests:
image: golang:1.14
image: golang:1.17
working_dir: /go/src/github.com/peterstace/simplefeatures
entrypoint: go test -test.count=1 -test.timeout=30m -test.run=. ./internal/cmprefimpl/cmppg
volumes:
Expand Down
2 changes: 1 addition & 1 deletion .ci/docker-compose-pgscan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
timeout: '1s'
retries: 50
tests:
image: golang:1.14
image: golang:1.17
working_dir: /go/src/github.com/peterstace/simplefeatures
entrypoint: go test -test.count=1 -test.timeout=30m -test.run=. ./internal/pgscan
volumes:
Expand Down
2 changes: 1 addition & 1 deletion .ci/docker-compose-unit.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "2.1"
services:
tests:
image: golang:1.15
image: golang:1.17
working_dir: /go/src/github.com/peterstace/simplefeatures
entrypoint: go test -covermode=count -coverprofile=coverage.out -test.count=1 -test.run=. ./geom ./rtree
volumes:
Expand Down
2 changes: 1 addition & 1 deletion .ci/geos.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.14
FROM golang:1.17
RUN apt-get -y update && \
apt-get install -y libgeos-dev=3.7.1-1 && \
rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion .ci/golint.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM golang:1.14
FROM golang:1.17
RUN go get -u golang.org/x/lint/golint

0 comments on commit 3487e8a

Please sign in to comment.