forked from yahoojapan/k2hftfuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
71 lines (63 loc) · 1.54 KB
/
.travis.yml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#
# FULLOCK - Fast User Level LOCK library by Yahoo! JAPAN
#
# Copyright 2015 Yahoo! JAPAN corporation.
#
# FULLOCK is fast locking library on user level by Yahoo! JAPAN.
# FULLOCK is following specifications.
#
# For the full copyright and license information, please view
# the LICENSE file that was distributed with this source code.
#
# AUTHOR: Takeshi Nakatani
# CREATE: Wed 7 Dec 2016
# REVISION:
#
language: cpp
sudo: required
dist: trusty
cache: apt
git:
submodules: false
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq git autoconf autotools-dev gcc g++ make gdb dh-make fakeroot dpkg-dev devscripts libtool pkg-config libssl-dev libyaml-dev libfuse-dev
- git submodule update --init --recursive
- git clone --recursive git://github.com/nakatani-yj/nakatani_yj_test_pj
- cd fullock
- ./autogen.sh
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
- git clone --recursive git://github.com/nakatani-yj/nakatani_yj_test_pj2
- cd k2hash
- ./autogen.sh
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
- git clone --recursive git://github.com/nakatani-yj/nakatani_yj_test_pj3
- cd chmpx
- ./autogen.sh
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
- git clone --recursive git://github.com/nakatani-yj/nakatani_yj_test_pj4
- cd k2htp_dtor
- ./autogen.sh
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
script:
- ./autogen.sh
- ./configure --prefix=/usr
- make
- "cd tests && make check-TESTS"
#
# VIM modelines
#
# vim:set ts=4 fenc=utf-8:
#