Mercurial > dropbear
annotate .travis.yml @ 971:763979a9c1f1 coverity
merge
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 19 Aug 2014 23:36:46 +0800 |
parents | 204dc7bd62aa |
children | 45830474d83c |
rev | line source |
---|---|
912
e630c7aecff7
Add Travis CI autobuilder config
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
1 language: c |
e630c7aecff7
Add Travis CI autobuilder config
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
2 compiler: |
e630c7aecff7
Add Travis CI autobuilder config
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
3 - gcc |
e630c7aecff7
Add Travis CI autobuilder config
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
4 |
914
54e1214e3af7
Install system libtom libs, run dropbearkey when it's done
Matt Johnston <matt@ucc.asn.au>
parents:
913
diff
changeset
|
5 script: |
921 | 6 - autoconf && autoheader && ./configure --enable-bundled-libtom CFLAGS="-O2 -Wall -Wno-pointer-sign" --prefix=$HOME/inst && make install MULTI=1 |
915 | 7 - ~/inst/bin/dropbearkey -t rsa -f testrsa |
8 - ~/inst/bin/dropbearkey -t dss -f testdss | |
9 - ~/inst/bin/dropbearkey -t ecdsa -f testec256 -s 256 | |
10 - ~/inst/bin/dropbearkey -t ecdsa -f testec384 -s 384 | |
11 - ~/inst/bin/dropbearkey -t ecdsa -f testec521 -s 521 | |
912
e630c7aecff7
Add Travis CI autobuilder config
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
12 |
e630c7aecff7
Add Travis CI autobuilder config
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
13 before_install: |
e630c7aecff7
Add Travis CI autobuilder config
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
14 - sudo apt-get update -qq |
914
54e1214e3af7
Install system libtom libs, run dropbearkey when it's done
Matt Johnston <matt@ucc.asn.au>
parents:
913
diff
changeset
|
15 - sudo apt-get install -qq libz-dev libtomcrypt-dev libtommath-dev |
912
e630c7aecff7
Add Travis CI autobuilder config
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
16 |
918 | 17 env: |
18 global: | |
19 # The next declration is the encrypted COVERITY_SCAN_TOKEN, created | |
20 # via the "travis encrypt" command using the project repo's public key | |
21 - secure: "F4rKQrHK/u58vPo3F9+x0WYXAeMFJvvtH9BIGZqx9yw8bUnL+gk0Ge9wnHHTXRcgCTqoc7B35uMS5njpH+Su/esVjrLAq85f/AmQctlRpmApwGK9LyxkIvx3UJN0nqfeeDXA90/8FUZ+n/qnCydXmYCEgqSaBCNydDxW1oqYUIc=" | |
22 | |
23 addons: | |
24 coverity_scan: | |
25 project: | |
26 name: "mkj/dropbear" | |
27 description: "Dropbear SSH" | |
28 notification_email: [email protected] | |
921 | 29 build_command_prepend: autoconf && autoheader && ./configure --enable-bundled-libtom CFLAGS='-O2 -Wall -Wno-pointer-sign' --prefix=$HOME/inst |
922
3a32abe076fc
Don't 'make install' for coverity
Matt Johnston <matt@ucc.asn.au>
parents:
921
diff
changeset
|
30 build_command: make MULTI=1 |
919 | 31 branch_pattern: coverity |