mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-09 18:05:42 +01:00
initial version of .travis.yml
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
06378ccf09
commit
55d683d307
3 changed files with 20 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
!.travis.yml
|
||||
configure
|
||||
config.log
|
||||
config.cache
|
||||
|
|
18
.travis.yml
Normal file
18
.travis.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
sudo: required
|
||||
language: c
|
||||
before_script:
|
||||
- sudo apt-get --yes install xmlto python-docutils
|
||||
- wget -O /tmp/alsa-lib.tar.gz https://github.com/alsa-project/alsa-lib/archive/master.tar.gz
|
||||
- ls -la /tmp/alsa-lib.tar.gz
|
||||
- tar -xvf /tmp/alsa-lib.tar.gz
|
||||
- cd alsa-lib-master
|
||||
- sed -e 's/-Wunused-const-variable=0//g' < gitcompile > gitcompile.travis
|
||||
- bash gitcompile.travis
|
||||
- sudo make install
|
||||
- cd ..
|
||||
- cp $(whereis gettextize | cut -d ' ' -f 2) gettextize1
|
||||
- sed -e 's-read dummy < /dev/tty--g' < gettextize1 > gettextize
|
||||
- chmod 755 gettextize
|
||||
- sed -e 's-gettextize-./gettextize-g' < gitcompile > gitcompile.travis
|
||||
script:
|
||||
- bash -x gitcompile.travis
|
|
@ -8,7 +8,7 @@ AM_INIT_AUTOMAKE
|
|||
AM_MAINTAINER_MODE([enable])
|
||||
|
||||
AM_GNU_GETTEXT([external])
|
||||
AM_GNU_GETTEXT_VERSION([0.15])
|
||||
AM_GNU_GETTEXT_VERSION([0.19.8])
|
||||
|
||||
dnl Checks for programs.
|
||||
|
||||
|
|
Loading…
Reference in a new issue