Skip to content

Commit

Permalink
Use Golang 1.14.3 patch release
Browse files Browse the repository at this point in the history
This fixes golang/go#37436 which was causing
"mlock of signal stack failed: 12" on Ubuntu systems.
  • Loading branch information
lfittl committed May 31, 2020
1 parent 27d37d3 commit 01f9780
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: go
sudo: required
go:
- "1.14"
- "1.14.3"
env:
- GO111MODULE=on
before_install:
Expand All @@ -21,4 +21,4 @@ deploy:
on:
repo: pganalyze/collector
tags: true
go: "1.14"
go: "1.14.3"
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg10
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM postgres:10

ENV GOVERSION 1.14
ENV GOVERSION 1.14.3
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg11
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM postgres:11

ENV GOVERSION 1.14
ENV GOVERSION 1.14.3
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg12
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM postgres:12

ENV GOVERSION 1.14
ENV GOVERSION 1.14.3
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg13
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM postgres:13-beta1

ENV GOVERSION 1.14
ENV GOVERSION 1.14.3
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg92
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM postgres:9.2

ENV GOVERSION 1.14
ENV GOVERSION 1.14.3
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg93
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM postgres:9.3

ENV GOVERSION 1.14
ENV GOVERSION 1.14.3
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg94
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM postgres:9.4

ENV GOVERSION 1.14
ENV GOVERSION 1.14.3
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg95
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM postgres:9.5

ENV GOVERSION 1.14
ENV GOVERSION 1.14.3
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg96
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM postgres:9.6

ENV GOVERSION 1.14
ENV GOVERSION 1.14.3
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion packages/src/Dockerfile.build.deb-systemd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM debian:jessie

ENV GOPATH /go
ENV GOVERSION 1.14
ENV GOVERSION 1.14.3
ENV CODE_DIR $GOPATH/src/github.com/pganalyze/collector
ENV PATH $PATH:/usr/local/go/bin
ENV ROOT_DIR /root
Expand Down
2 changes: 1 addition & 1 deletion packages/src/Dockerfile.build.deb-upstart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:trusty

ENV GOPATH /go
ENV GOVERSION 1.14
ENV GOVERSION 1.14.3
ENV CODE_DIR $GOPATH/src/github.com/pganalyze/collector
ENV PATH $PATH:/usr/local/go/bin
ENV ROOT_DIR /root
Expand Down
2 changes: 1 addition & 1 deletion packages/src/Dockerfile.build.rpm-systemd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM centos:7

ENV GOPATH /go
ENV GOVERSION 1.14
ENV GOVERSION 1.14.3
ENV CODE_DIR $GOPATH/src/github.com/pganalyze/collector
ENV PATH $PATH:/usr/local/go/bin
ENV ROOT_DIR /root
Expand Down
2 changes: 1 addition & 1 deletion packages/src/Dockerfile.build.rpm-sysvinit
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM centos:6

ENV GOPATH /go
ENV GOVERSION 1.14
ENV GOVERSION 1.14.3
ENV CODE_DIR $GOPATH/src/github.com/pganalyze/collector
ENV PATH $PATH:/usr/local/go/bin
ENV ROOT_DIR /root
Expand Down

0 comments on commit 01f9780

Please sign in to comment.