blob: 1bdb48f96252d9da8f0f4946f969cebcc4bde6cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
language: go
os: linux
dist: trusty
sudo: require
go:
- 1.5
- 1.6
- 1.7
- 1.8
- 1.9
env:
- LIBVIRT=1.2.0 EXT=gz
- LIBVIRT=1.2.10 EXT=gz
- LIBVIRT=1.2.20 EXT=gz
- LIBVIRT=2.5.0 EXT=xz
- LIBVIRT=3.6.0 EXT=xz
install:
- sudo apt-get -qqy build-dep libvirt
- sudo apt-get -qqy install curl qemu-system-x86 sasl2-bin
- 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 \
--with-qemu --with-lxc
- make
- sudo make install
- popd
- sudo cp libvirtd.sasl /etc/sasl2/libvirt.conf
- sudo libvirtd -d -l -f libvirtd.conf
- sudo virtlogd -d || true
- sudo chmod a+rwx /var/run/libvirt/libvirt-sock*
- echo "pass" | sudo saslpasswd2 -p -a libvirt user
script:
go test -timeout 1m -tags "integration" -v
|