@@ -25,20 +25,20 @@ matrix:
25
25
# ###################################
26
26
- os : linux
27
27
name : " Acceptance tests"
28
- dist : xenial
28
+ dist : bionic
29
29
go : " 1.13.x"
30
30
services :
31
31
- docker
32
32
sudo : required
33
33
before_install :
34
- # locally: docker run -it ubuntu:16.04 bash
35
- # Install 18.09
34
+ # locally: docker run -it ubuntu:bionic bash (https://ubuntu.pkgs.org/18.04/docker-ce-stable-amd64/)
36
35
- sudo apt-get update
37
36
- sudo apt-get -y install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
38
37
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
39
38
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
40
39
- sudo apt-get update
41
- - sudo apt-get -y install docker-ce=5:18.09.6~3-0~ubuntu-xenial
40
+ # apt-cache policy docker-ce
41
+ - sudo apt-get -y install docker-ce=5:19.03.5~3-0~ubuntu-bionic
42
42
- docker version
43
43
# Allow local registry to be insecure
44
44
- sudo sed 's/DOCKER_OPTS="/DOCKER_OPTS="--insecure-registry=127.0.0.1:15000 /g' -i /etc/default/docker
@@ -50,14 +50,14 @@ matrix:
50
50
# https://golang.org/doc/devel/release.html#policy
51
51
- os : linux
52
52
name : " Build (golang current amd64)"
53
- dist : xenial
53
+ dist : bionic
54
54
go : " 1.13.x"
55
55
script :
56
56
- make compile
57
57
58
58
- os : linux
59
59
name : " Build (golang previous amd64)"
60
- dist : xenial
60
+ dist : bionic
61
61
go : " 1.12.x"
62
62
script :
63
63
- make compile
@@ -67,7 +67,7 @@ matrix:
67
67
# ###################################
68
68
- os : linux
69
69
name : " Unit-tests, vet, and website"
70
- dist : xenial
70
+ dist : bionic
71
71
go : " 1.13.x"
72
72
script :
73
73
- make vet
@@ -101,7 +101,7 @@ matrix:
101
101
# ###################################
102
102
- os : linux
103
103
name : " Build (golang future amd64)"
104
- dist : xenial
104
+ dist : bionic
105
105
go : tip
106
106
script :
107
107
- make compile
0 commit comments