File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -17,18 +17,19 @@ matrix:
17
17
18
18
os :
19
19
- osx
20
+ - linux
20
21
21
22
before_install :
22
23
# Call xvfb directly on linux runs and give it time to start
23
24
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then
24
25
export DISPLAY=:99.0;
25
- Xvfb :99 &
26
+ Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
26
27
sleep 3;
27
28
sudo apt-get update && sudo apt-get install -y libsecret-1-0;
28
29
fi
29
30
30
31
install :
31
- - TRAVIS_NODE_VERSION="6 ";
32
+ - TRAVIS_NODE_VERSION="8 ";
32
33
# Clear out whatever version of NVM Travis has as it is old.
33
34
- rm -rf ~/.nvm;
34
35
# Grab NVM.
@@ -49,7 +50,7 @@ install:
49
50
- go get -u -v github.com/ramya-rao-a/go-outline
50
51
- go get -u -v github.com/rogpeppe/godef
51
52
- go get -u -v github.com/sqs/goreturns
52
- - go get -u -v github.com/uudashr/gopkgs/cmd/gopkgs
53
+ - go get -u -v github.com/uudashr/gopkgs/v2/ cmd/gopkgs
53
54
- go get -u -v github.com/zmb3/gogetdoc
54
55
- go get -u -v golang.org/x/lint/golint
55
56
- go get -u -v golang.org/x/tools/cmd/gorename
Original file line number Diff line number Diff line change 1
- FROM golang:latest AS gobuilder
1
+ FROM golang:1.14 AS gobuilder
2
2
3
3
ENV GO111MODULE on
4
4
ENV GOBIN /gobin
@@ -29,7 +29,7 @@ RUN go get -u -v \
29
29
github.com/ramya-rao-a/go-outline \
30
30
github.com/rogpeppe/godef \
31
31
github.com/sqs/goreturns \
32
- github.com/uudashr/gopkgs/cmd/gopkgs \
32
+ github.com/uudashr/gopkgs/v2/ cmd/gopkgs \
33
33
github.com/zmb3/gogetdoc \
34
34
golang.org/x/lint/golint \
35
35
golang.org/x/tools/cmd/gorename
You can’t perform that action at this time.
0 commit comments