Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
13 lines (13 sloc)
417 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo: required | |
language: go | |
go: | |
- "1.10.x" | |
before_install: | |
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
- sudo apt-get update | |
- sudo apt-get -y install docker-ce libtool pkg-config build-essential autoconf automake uuid-dev wget | |
script: | |
- make test | |
services: | |
- docker |