diff options
author | Matt Johnston <matt@ucc.asn.au> | 2014-03-07 21:14:12 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2014-03-07 21:14:12 +0800 |
commit | ce9f9594da76bc07a27272f691f9eb370bc002f0 (patch) | |
tree | 23d4379bf458bad5c3eb6580c0672c10801f8a55 /.travis.yml | |
parent | f0bf37b6cb11229475fa04a8f8eab4a85add4165 (diff) |
Add some tests for multi
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 963d275..06ab561 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,13 +3,13 @@ compiler: - gcc script: - - autoconf && autoheader && ./configure --$BUNDLEDLIBTOM-bundled-libtom CFLAGS="-O2 -Wall -Wno-pointer-sign" && make - - ./dropbearkey -t rsa -f testrsa - - ./dropbearkey -t dss -f testdss - - ./dropbearkey -t ecdsa -f testec256 -s 256 - - ./dropbearkey -t ecdsa -f testec384 -s 384 - - ./dropbearkey -t ecdsa -f testec521 -s 521 - + - mkdir ~/inst + - autoconf && autoheader && ./configure --$BUNDLEDLIBTOM-bundled-libtom CFLAGS="-O2 -Wall -Wno-pointer-sign" --prefix=$HOME/inst && make install + - ~/inst/bin/dropbearkey -t rsa -f testrsa + - ~/inst/bin/dropbearkey -t dss -f testdss + - ~/inst/bin/dropbearkey -t ecdsa -f testec256 -s 256 + - ~/inst/bin/dropbearkey -t ecdsa -f testec384 -s 384 + - ~/inst/bin/dropbearkey -t ecdsa -f testec521 -s 521 before_install: - sudo apt-get update -qq @@ -18,5 +18,7 @@ before_install: env: - BUNDLEDLIBTOM=enable - BUNDLEDLIBTOM=disable + - MULTI=1 + - MULTI=0 |