go-libvirt-plain/.travis.yml

46 lines
1.2 KiB
YAML
Raw Normal View History

2016-05-20 03:05:37 +03:00
language: go
os: linux
dist: trusty
sudo: require
2016-05-20 03:05:37 +03:00
go:
2016-08-31 23:58:56 +03:00
- 1.7
env:
- LIBVIRT=1.2.2 EXT=gz
- LIBVIRT=2.3.0 EXT=xz
2016-05-20 03:05:37 +03:00
before_install:
- go get github.com/golang/lint/golint
install:
# credit here goes to the go-libvirt authors,
# see: https://github.com/rgbkrk/libvirt-go/blob/master/.travis.yml
- sudo apt-get -qqy build-dep libvirt
- sudo apt-get -qqy install curl qemu-system-x86
- sudo mkdir -p /usr/src && sudo chown $(id -u) /usr/src
- curl -O -s https://libvirt.org/sources/libvirt-${LIBVIRT}.tar.${EXT}
- tar -C /usr/src -xf libvirt-${LIBVIRT}.tar.${EXT}
- pushd /usr/src/libvirt-${LIBVIRT}
- |
./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc \
--without-polkit \
--without-esx --without-vbox --without-xen --without-libxl --without-lxc \
--with-qemu
- make
- sudo make install
- popd
- sudo libvirtd -d -l -f libvirtd.conf
- sudo virtlogd -d || true
2016-05-20 03:05:37 +03:00
before_script:
- go get -d ./...
2016-05-20 03:05:37 +03:00
script:
- virsh list
2016-05-20 03:05:37 +03:00
- ./scripts/licensecheck.sh
- go build ./...
- golint -set_exit_status ./...
2016-05-20 03:05:37 +03:00
- go vet ./...
- go test -v -tags=integration ./...