forked from scop/bash-completion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
160 lines (158 loc) · 2.94 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
language: bash
addons:
apt:
packages:
- dejagnu
- tcllib
# List of packages enabling more stuff to test follows.
# Note that all of these may not be installable via the apt addon, but
# we should have filed an issue for all that are not. They'll trickle
# in later when/if approved. More info:
# https://github.com/travis-ci/apt-package-whitelist
- a2ps
- abook
- acpi
- apache2.2-common
- apache2-utils
- apt-build
- asciidoc
- aspell
- bc
- bind9-host
- bluez
- bridge-utils
- bsdgames
- cfengine2
- chkconfig
- chrony
- chrpath
- cksfv
- clisp
- cowsay
- cppcheck
- cups-bsd
- cups-client
- cvs
- cvsps
- desktop-file-utils
- dict
- dselect
- dsniff
- enscript
- eog
- evince
- expat
- fbi
- feh
- file-roller
- finger
- freerdp-x11
- gcj-jdk
- gcl
- gdb
- genisoimage
- gkrellm
- gnat-4.6
- gnokii-cli
- gnome-mplayer
- gperf
- gphoto2
- graphviz
- growisofs
- grub
- hddtemp
- htop
- idn
- iftop
- info
- iperf
- ipmitool
- iputils-arping
- iputils-ping
- iputils-tracepath
- ipv6calc
- isc-dhcp-client
- jpegoptim
- k3b
- kcov
- kplayer
- ldap-utils
- lftp
- libuser
- lilo
- links
- lrzip
- lvm2
- lzip
- mailman
- mc
- mcrypt
- mdadm
- medusa
- mencoder
- mii-diag
- minicom
- monodevelop
- mplayer-gui
- mtx
- mussh
- net-tools
- nfs-common
- nis
- open-iscsi-utils
- openswan
- optipng
- p7zip-full
- patchutils
- perl-doc # for perldoc to actually work
- pinfo
- poppler-utils
- postfix
- prelink
- protobuf-compiler
# TODO: "puppet agent --" test fails for some non-obvious reason
#- puppet-common
- pwgen
- pyflakes
- pylint
- quota
- rcs
- rdesktop
- reportbug
- reptyr
- ri # avoid the Travis default
- rpm
- samba-common-bin
- sbcl
- screen
- sharutils
- sitecopy
- smartmontools
- smbclient
- strace
- sysbench
- tcpdump
- texinfo
- tshark
- unace
- units
- unixodbc
- valgrind
- vpnc
- wireless-tools
- wodim
- wvdial
- xserver-xorg-input-synaptics
- xsltproc
- xzdec
- yum
- yum-utils
script:
- autoreconf -i
- ./configure
- make -C completions check
- cd test
- export PATH="/usr/bin:$PATH" # avoid Travis default ri etc
- ./runCompletion --all
- ./runInstall --all
- ./runUnit --all