File: .travis.yml

package info (click to toggle)
dropbear 2014.65-1%2Bdeb8u2
  • links: PTS
  • area: main
  • in suites: jessie
  • size: 7,548 kB
  • ctags: 5,278
  • sloc: ansic: 71,024; sh: 3,448; makefile: 700; perl: 409; asm: 30
file content (20 lines) | stat: -rw-r--r-- 646 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: c
compiler:
  - gcc

script: 
  - autoconf && autoheader && ./configure $BUNDLEDLIBTOM 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
  - sudo apt-get install -qq libz-dev libtomcrypt-dev libtommath-dev

env: 
  - BUNDLEDLIBTOM=--disable-bundled-libtom
  - BUNDLEDLIBTOM=--enable-bundled-libtom
  - MULTI=1