Mercurial > dropbear
annotate .travis.yml @ 919:fad4407e1552 coverity
More for coverity
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 08 Mar 2014 16:56:15 +0800 |
parents | f612bb85dcaa |
children | 7f10296440c9 |
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: |
915 | 6 - mkdir ~/inst |
919 | 7 - autoconf && autoheader && ./configure --enable-bundled-libtom CFLAGS="-O2 -Wall -Wno-pointer-sign" --prefix=$HOME/inst && make install MULTI=1 |
915 | 8 - ~/inst/bin/dropbearkey -t rsa -f testrsa |
9 - ~/inst/bin/dropbearkey -t dss -f testdss | |
10 - ~/inst/bin/dropbearkey -t ecdsa -f testec256 -s 256 | |
11 - ~/inst/bin/dropbearkey -t ecdsa -f testec384 -s 384 | |
12 - ~/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
|
13 |
e630c7aecff7
Add Travis CI autobuilder config
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
14 before_install: |
e630c7aecff7
Add Travis CI autobuilder config
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
15 - 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
|
16 - 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
|
17 |
918 | 18 env: |
19 global: | |
20 # The next declration is the encrypted COVERITY_SCAN_TOKEN, created | |
21 # via the "travis encrypt" command using the project repo's public key | |
22 - secure: "F4rKQrHK/u58vPo3F9+x0WYXAeMFJvvtH9BIGZqx9yw8bUnL+gk0Ge9wnHHTXRcgCTqoc7B35uMS5njpH+Su/esVjrLAq85f/AmQctlRpmApwGK9LyxkIvx3UJN0nqfeeDXA90/8FUZ+n/qnCydXmYCEgqSaBCNydDxW1oqYUIc=" | |
23 | |
24 addons: | |
25 coverity_scan: | |
26 project: | |
27 name: "mkj/dropbear" | |
28 description: "Dropbear SSH" | |
29 notification_email: [email protected] | |
919 | 30 build_command_prepend: autoconf && autoheader && ./configure --enable-bundled-libtom CFLAGS="-O2 -Wall -Wno-pointer-sign" --prefix=$HOME/inst |
31 build_command: make install MULTI=1 | |
32 branch_pattern: coverity |