Mercurial > dropbear
annotate .travis.yml @ 1747:ff51d5967e2d
Avoid passing NULL to memcpy
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 19 Oct 2020 21:38:20 +0800 |
parents | f9ad4d39e388 |
children | d529a52b2f7c 32307118bc26 |
rev | line source |
---|---|
912
e630c7aecff7
Add Travis CI autobuilder config
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
1 language: c |
1240
87a43bf49e37
TravisCI: modify to run builds in container
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1142
diff
changeset
|
2 |
1485
3a916b945185
Use an explicit matrix instead, avoid bad clang combinations etc
Matt Johnston <matt@ucc.asn.au>
parents:
1481
diff
changeset
|
3 git: |
3a916b945185
Use an explicit matrix instead, avoid bad clang combinations etc
Matt Johnston <matt@ucc.asn.au>
parents:
1481
diff
changeset
|
4 depth: 3 |
1243
2e3d083483de
TravisCI: enable osx builds
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1242
diff
changeset
|
5 |
1691
2d3745d58843
try rearrange travis build matrix
Matt Johnston <matt@ucc.asn.au>
parents:
1690
diff
changeset
|
6 # use focal which provides libtommath 1.20 |
2d3745d58843
try rearrange travis build matrix
Matt Johnston <matt@ucc.asn.au>
parents:
1690
diff
changeset
|
7 dist: focal |
2d3745d58843
try rearrange travis build matrix
Matt Johnston <matt@ucc.asn.au>
parents:
1690
diff
changeset
|
8 |
1243
2e3d083483de
TravisCI: enable osx builds
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1242
diff
changeset
|
9 matrix: |
1485
3a916b945185
Use an explicit matrix instead, avoid bad clang combinations etc
Matt Johnston <matt@ucc.asn.au>
parents:
1481
diff
changeset
|
10 include: |
1693
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
11 - name: "plain linux" |
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
12 compiler: gcc |
1485
3a916b945185
Use an explicit matrix instead, avoid bad clang combinations etc
Matt Johnston <matt@ucc.asn.au>
parents:
1481
diff
changeset
|
13 env: WEXTRAFLAGS=-Werror |
1693
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
14 - name: "multi binary" |
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
15 env: MULTI=1 WEXTRAFLAGS=-Werror |
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
16 - name: "bundled libtom, xenial, no writev()" |
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
17 # NOWRITEV is unrelated to libtom/xenial, test here to save a job |
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
18 env: CONFIGURE_FLAGS=--enable-bundled-libtom WEXTRAFLAGS=-Werror NOWRITEV=1 |
1690
2a06ef4ba80d
.travis.yml needs spaces not tabs
Matt Johnston <matt@ucc.asn.au>
parents:
1689
diff
changeset
|
19 # can use an older distro with bundled libtom |
2a06ef4ba80d
.travis.yml needs spaces not tabs
Matt Johnston <matt@ucc.asn.au>
parents:
1689
diff
changeset
|
20 dist: xenial |
1693
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
21 - name: "linux clang" |
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
22 os: linux |
1485
3a916b945185
Use an explicit matrix instead, avoid bad clang combinations etc
Matt Johnston <matt@ucc.asn.au>
parents:
1481
diff
changeset
|
23 compiler: clang |
1693
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
24 env: WEXTRAFLAGS=-Werror |
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
25 - name: "osx" |
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
26 os: osx |
1485
3a916b945185
Use an explicit matrix instead, avoid bad clang combinations etc
Matt Johnston <matt@ucc.asn.au>
parents:
1481
diff
changeset
|
27 compiler: clang |
1693
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
28 # OS X says daemon() and utmp are deprecated |
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
29 env: WEXTRAFLAGS="-Wno-deprecated-declarations -Werror" |
1581 | 30 # Note: the fuzzing malloc wrapper doesn't replace free() in system libtomcrypt, so need bundled. |
1693
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
31 - name: "fuzzing" |
f9ad4d39e388
Bring back -Werror and improve travis tests
Matt Johnston <matt@ucc.asn.au>
parents:
1691
diff
changeset
|
32 env: DO_FUZZ=1 CONFIGURE_FLAGS="--enable-fuzz --disable-harden --enable-bundled-libtom" WEXTRAFLAGS=-Werror LDFLAGS=-fsanitize=address EXTRACFLAGS=-fsanitize=address CXX=clang++ |
1567 | 33 compiler: clang |
1242
53111b3413dc
TravisCI: enable build with clang
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1241
diff
changeset
|
34 |
1240
87a43bf49e37
TravisCI: modify to run builds in container
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1142
diff
changeset
|
35 # container-based builds |
87a43bf49e37
TravisCI: modify to run builds in container
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1142
diff
changeset
|
36 addons: |
87a43bf49e37
TravisCI: modify to run builds in container
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1142
diff
changeset
|
37 apt: |
87a43bf49e37
TravisCI: modify to run builds in container
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1142
diff
changeset
|
38 packages: |
87a43bf49e37
TravisCI: modify to run builds in container
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1142
diff
changeset
|
39 # packages list: https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise |
87a43bf49e37
TravisCI: modify to run builds in container
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1142
diff
changeset
|
40 - zlib1g-dev |
87a43bf49e37
TravisCI: modify to run builds in container
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1142
diff
changeset
|
41 - libtomcrypt-dev |
87a43bf49e37
TravisCI: modify to run builds in container
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1142
diff
changeset
|
42 - libtommath-dev |
1566 | 43 - mercurial |
1243
2e3d083483de
TravisCI: enable osx builds
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1242
diff
changeset
|
44 |
1245
cb0806413220
TravisCI: fix linux + clang compile
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1244
diff
changeset
|
45 before_install: |
cb0806413220
TravisCI: fix linux + clang compile
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1244
diff
changeset
|
46 - if [ "$CC" = "clang" ]; then WEXTRAFLAGS="$WEXTRAFLAGS -Wno-error=incompatible-library-redeclaration" ; fi # workaround |
cb0806413220
TravisCI: fix linux + clang compile
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1244
diff
changeset
|
47 |
1566 | 48 install: |
1578
fdadac70ee67
add -fsanitize=address for fuzz test again
Matt Johnston <matt@ucc.asn.au>
parents:
1572
diff
changeset
|
49 - autoconf |
fdadac70ee67
add -fsanitize=address for fuzz test again
Matt Johnston <matt@ucc.asn.au>
parents:
1572
diff
changeset
|
50 - autoheader |
1579
8c1f762c6e9d
print config.log on failure
Matt Johnston <matt@ucc.asn.au>
parents:
1578
diff
changeset
|
51 - ./configure $CONFIGURE_FLAGS CFLAGS="-O2 -Wall -Wno-pointer-sign $WEXTRAFLAGS $EXTRACFLAGS" --prefix="$HOME/inst" || (cat config.log; exit 1) |
1262
71698088bdac
TravisCI: re-enable MULTI=1 & NOWRITEV=1 builds on OSX, fixes d416a9b
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1245
diff
changeset
|
52 - if [ "$NOWRITEV" = "1" ]; then sed -i -e s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h ; fi |
1680 | 53 - make lint |
1291 | 54 - make -j3 |
1578
fdadac70ee67
add -fsanitize=address for fuzz test again
Matt Johnston <matt@ucc.asn.au>
parents:
1572
diff
changeset
|
55 - test -z $DO_FUZZ || make fuzzstandalone |
1291 | 56 # avoid concurrent install, osx/freebsd is racey (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208093) |
57 - make install | |
1240
87a43bf49e37
TravisCI: modify to run builds in container
Chocobo1 <Chocobo1@users.noreply.github.com>
parents:
1142
diff
changeset
|
58 |
1566 | 59 script: |
915 | 60 - ~/inst/bin/dropbearkey -t rsa -f testrsa |
61 - ~/inst/bin/dropbearkey -t dss -f testdss | |
62 - ~/inst/bin/dropbearkey -t ecdsa -f testec256 -s 256 | |
63 - ~/inst/bin/dropbearkey -t ecdsa -f testec384 -s 384 | |
64 - ~/inst/bin/dropbearkey -t ecdsa -f testec521 -s 521 | |
1659
d32bcb5c557d
Add Ed25519 support (#91)
Vladislav Grishenko <themiron@users.noreply.github.com>
parents:
1583
diff
changeset
|
65 - ~/inst/bin/dropbearkey -t ed25519 -f tested25519 |
1566 | 66 - test -z $DO_FUZZ || ./fuzzers_test.sh |
1486 | 67 |
68 branches: | |
69 only: | |
70 - master | |
71 - coverity | |
72 |