comparison .travis.yml @ 917:d572054cfe15

Fix env vars for travis again
author Matt Johnston <matt@ucc.asn.au>
date Fri, 07 Mar 2014 21:46:51 +0800
parents ca46fb43679d
children f612bb85dcaa 25b7ed9fe854
comparison
equal deleted inserted replaced
916:803c1f0b019b 917:d572054cfe15
2 compiler: 2 compiler:
3 - gcc 3 - gcc
4 4
5 script: 5 script:
6 - mkdir ~/inst 6 - mkdir ~/inst
7 - autoconf && autoheader && ./configure --$BUNDLEDLIBTOM-bundled-libtom CFLAGS="-O2 -Wall -Wno-pointer-sign" --prefix=$HOME/inst && make install 7 - autoconf && autoheader && ./configure $BUNDLEDLIBTOM CFLAGS="-O2 -Wall -Wno-pointer-sign" --prefix=$HOME/inst && make install
8 - ~/inst/bin/dropbearkey -t rsa -f testrsa 8 - ~/inst/bin/dropbearkey -t rsa -f testrsa
9 - ~/inst/bin/dropbearkey -t dss -f testdss 9 - ~/inst/bin/dropbearkey -t dss -f testdss
10 - ~/inst/bin/dropbearkey -t ecdsa -f testec256 -s 256 10 - ~/inst/bin/dropbearkey -t ecdsa -f testec256 -s 256
11 - ~/inst/bin/dropbearkey -t ecdsa -f testec384 -s 384 11 - ~/inst/bin/dropbearkey -t ecdsa -f testec384 -s 384
12 - ~/inst/bin/dropbearkey -t ecdsa -f testec521 -s 521 12 - ~/inst/bin/dropbearkey -t ecdsa -f testec521 -s 521
14 before_install: 14 before_install:
15 - sudo apt-get update -qq 15 - sudo apt-get update -qq
16 - sudo apt-get install -qq libz-dev libtomcrypt-dev libtommath-dev 16 - sudo apt-get install -qq libz-dev libtomcrypt-dev libtommath-dev
17 17
18 env: 18 env:
19 - BUNDLEDLIBTOM=enable 19 - BUNDLEDLIBTOM=--disable-bundled-libtom
20 - BUNDLEDLIBTOM=disable 20 - BUNDLEDLIBTOM=--enable-bundled-libtom
21 - MULTI=1 21 - MULTI=1
22 - MULTI=0
23
24