travis: Run apt update before installing dependencies

Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
This commit is contained in:
Julien Pivotto
2017-02-20 22:23:06 +01:00
parent 573a76eedb
commit 421bacd7dc

View File

@@ -5,7 +5,9 @@ go:
- tip
sudo: true
dist: trusty
before_install: 'git fetch --unshallow'
before_install:
- sudo apt update
- git fetch --unshallow
install: 'make deps'
script: 'make test'
matrix: