Skip to content

Commit 55d683d

Browse files
committed
initial version of .travis.yml
Signed-off-by: Jaroslav Kysela <[email protected]>
1 parent 06378cc commit 55d683d

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
!.travis.yml
12
configure
23
config.log
34
config.cache

.travis.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
sudo: required
2+
language: c
3+
before_script:
4+
- sudo apt-get --yes install xmlto python-docutils
5+
- wget -O /tmp/alsa-lib.tar.gz https://github.com/alsa-project/alsa-lib/archive/master.tar.gz
6+
- ls -la /tmp/alsa-lib.tar.gz
7+
- tar -xvf /tmp/alsa-lib.tar.gz
8+
- cd alsa-lib-master
9+
- sed -e 's/-Wunused-const-variable=0//g' < gitcompile > gitcompile.travis
10+
- bash gitcompile.travis
11+
- sudo make install
12+
- cd ..
13+
- cp $(whereis gettextize | cut -d ' ' -f 2) gettextize1
14+
- sed -e 's-read dummy < /dev/tty--g' < gettextize1 > gettextize
15+
- chmod 755 gettextize
16+
- sed -e 's-gettextize-./gettextize-g' < gitcompile > gitcompile.travis
17+
script:
18+
- bash -x gitcompile.travis

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ AM_INIT_AUTOMAKE
88
AM_MAINTAINER_MODE([enable])
99

1010
AM_GNU_GETTEXT([external])
11-
AM_GNU_GETTEXT_VERSION([0.15])
11+
AM_GNU_GETTEXT_VERSION([0.19.8])
1212

1313
dnl Checks for programs.
1414

0 commit comments

Comments
 (0)