comparison .travis.yml @ 914:54e1214e3af7

Install system libtom libs, run dropbearkey when it's done
author Matt Johnston <matt@ucc.asn.au>
date Fri, 07 Mar 2014 21:03:43 +0800
parents 6e2aa862e167
children ca46fb43679d
comparison
equal deleted inserted replaced
913:6e2aa862e167 914:54e1214e3af7
1 language: c 1 language: c
2 compiler: 2 compiler:
3 - gcc 3 - gcc
4 4
5 script: autoconf && autoheader && ./configure --$BUNDLEDLIBTOM-bundled-libtom CFLAGS="-O2 -Wall -Wno-pointer-sign" && make 5 script:
6 - autoconf && autoheader && ./configure --$BUNDLEDLIBTOM-bundled-libtom CFLAGS="-O2 -Wall -Wno-pointer-sign" && make
7 - ./dropbearkey -t rsa -f testrsa
8 - ./dropbearkey -t dss -f testdss
9 - ./dropbearkey -t ecdsa -f testec256 -s 256
10 - ./dropbearkey -t ecdsa -f testec384 -s 384
11 - ./dropbearkey -t ecdsa -f testec521 -s 521
12
6 13
7 before_install: 14 before_install:
8 - sudo apt-get update -qq 15 - sudo apt-get update -qq
9 - sudo apt-get install -qq libz-dev 16 - sudo apt-get install -qq libz-dev libtomcrypt-dev libtommath-dev
10 17
11 env: 18 env:
12 - BUNDLEDLIBTOM=enable 19 - BUNDLEDLIBTOM=enable
13 - BUNDLEDLIBTOM=disable 20 - BUNDLEDLIBTOM=disable
14 21