mirror of
https://github.com/westes/flex.git
synced 2026-01-26 15:39:06 +00:00
initial .travis.yml file
This commit is contained in:
parent
e7d45afc6a
commit
c0508df61d
24
.travis.yml
Normal file
24
.travis.yml
Normal file
@ -0,0 +1,24 @@
|
||||
language: c
|
||||
|
||||
compiler:
|
||||
- gcc
|
||||
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- ubuntu-toolchain-r-test
|
||||
packages:
|
||||
- autoconf
|
||||
- bison
|
||||
- gcc-6
|
||||
- help2man
|
||||
- lzip
|
||||
- texinfo
|
||||
- texlive
|
||||
|
||||
before_script:
|
||||
- ./.travis/install-gettext.sh
|
||||
- ./.travis/install-automake.sh
|
||||
- export PATH=$HOME/bin:$PATH
|
||||
|
||||
script: ./autogen.sh && ./configure && make && make check && make distcheck
|
||||
10
.travis/install-automake.sh
Executable file
10
.travis/install-automake.sh
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash -ex
|
||||
|
||||
wget -nv https://ftp.gnu.org/gnu/automake/automake-1.15.1.tar.gz{,.sig}
|
||||
gpg2 --keyserver hkp://keys.gnupg.net --recv-keys 94604D37
|
||||
gpg2 automake-1.15.1.tar.gz.sig
|
||||
tar xf automake-1.15.1.tar.gz
|
||||
cd automake-1.15.1
|
||||
./configure --prefix=$HOME
|
||||
make
|
||||
make install
|
||||
10
.travis/install-gettext.sh
Executable file
10
.travis/install-gettext.sh
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash -ex
|
||||
|
||||
wget -nv https://ftp.gnu.org/gnu/gettext/gettext-0.19.8.1.tar.lz{,.sig}
|
||||
gpg2 --keyserver hkp://keys.gnupg.net --recv-keys D7E69871
|
||||
gpg2 gettext-0.19.8.1.tar.lz.sig
|
||||
tar xf gettext-0.19.8.1.tar.lz
|
||||
cd gettext-0.19.8.1
|
||||
./configure --prefix=$HOME
|
||||
make
|
||||
make install
|
||||
Loading…
x
Reference in New Issue
Block a user