Skip to content
This repository was archived by the owner on Dec 22, 2022. It is now read-only.

Commit 2ed7121

Browse files
authored
Build With Go 1.14 (prebid#1350)
1 parent fe842d3 commit 2ed7121

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
language: go
22

33
go:
4-
- '1.12'
54
- '1.13'
6-
- '1.14'
5+
- '1.14.2'
76

87
go_import_path: github.com/prebid/prebid-server
98

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ RUN apt-get update && \
33
apt-get -y upgrade && \
44
apt-get install -y wget
55
RUN cd /tmp && \
6-
wget https://dl.google.com/go/go1.12.7.linux-amd64.tar.gz && \
7-
tar -xf go1.12.7.linux-amd64.tar.gz && \
6+
wget https://dl.google.com/go/go1.14.2.linux-amd64.tar.gz && \
7+
tar -xf go1.14.2.linux-amd64.tar.gz && \
88
mv go /usr/local
99
RUN mkdir -p /app/prebid-server/
1010
WORKDIR /app/prebid-server/

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ For more information, see:
1818

1919
## Installation
2020

21-
First install [Go 1.12](https://golang.org/doc/install) latest version.
21+
First install [Go](https://golang.org/doc/install) version 1.13 or newer.
22+
2223
Note that prebid-server is using [Go modules](https://blog.golang.org/using-go-modules).
23-
If using Go version <1.13 and are inside GOPATH `GO111MODULE` needs to be set to `GO111MODULE=on`.
24+
We officially support the most recent two major versions of the Go runtime. However, if you'd like to use a version <1.13 and are inside GOPATH `GO111MODULE` needs to be set to `GO111MODULE=on`.
2425

2526
Download and prepare Prebid Server:
2627

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/prebid/prebid-server
22

3-
go 1.12
3+
go 1.13
44

55
require (
66
github.com/BurntSushi/toml v0.3.1 // indirect

0 commit comments

Comments
 (0)