comparison .travis.yml @ 1080:a988f7db337c

add no-writev build
author Matt Johnston <matt@ucc.asn.au>
date Sat, 02 May 2015 22:51:46 +0800
parents 25b7ed9fe854
children 61edd11299e5
comparison
equal deleted inserted replaced
1079:acf444bcb115 1080:a988f7db337c
1 language: c 1 language: c
2 compiler: 2 compiler:
3 - gcc 3 - gcc
4 4
5 script: 5 script:
6 - autoconf && autoheader && ./configure $BUNDLEDLIBTOM CFLAGS="-O2 -Wall -Wno-pointer-sign" --prefix=$HOME/inst && make install 6 - autoconf && autoheader && ./configure $BUNDLEDLIBTOM CFLAGS="-O2 -Wall -Wno-pointer-sign" --prefix=$HOME/inst
7 - [ "$NOWRITEV" == 1 ] && sed -i s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h
8 - make install
7 - ~/inst/bin/dropbearkey -t rsa -f testrsa 9 - ~/inst/bin/dropbearkey -t rsa -f testrsa
8 - ~/inst/bin/dropbearkey -t dss -f testdss 10 - ~/inst/bin/dropbearkey -t dss -f testdss
9 - ~/inst/bin/dropbearkey -t ecdsa -f testec256 -s 256 11 - ~/inst/bin/dropbearkey -t ecdsa -f testec256 -s 256
10 - ~/inst/bin/dropbearkey -t ecdsa -f testec384 -s 384 12 - ~/inst/bin/dropbearkey -t ecdsa -f testec384 -s 384
11 - ~/inst/bin/dropbearkey -t ecdsa -f testec521 -s 521 13 - ~/inst/bin/dropbearkey -t ecdsa -f testec521 -s 521
16 18
17 env: 19 env:
18 - BUNDLEDLIBTOM=--disable-bundled-libtom 20 - BUNDLEDLIBTOM=--disable-bundled-libtom
19 - BUNDLEDLIBTOM=--enable-bundled-libtom 21 - BUNDLEDLIBTOM=--enable-bundled-libtom
20 - MULTI=1 22 - MULTI=1
23 - NOWRITEV=1