File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,11 @@ matrix:
48
48
- VALGRIND=1
49
49
OPTIONS="-DBUILD_CLAR=ON -DBUILD_EXAMPLES=OFF -DCMAKE_BUILD_TYPE=Debug"
50
50
os : linux
51
+ - compiler : gcc
52
+ env :
53
+ - MBEDTLS=1
54
+ OPTIONS="-DBUILD_CLAR=ON -DBUILD_EXAMPLES=OFF -DCMAKE_BUILD_TYPE=Debug -DUSE_OPENSSL=OFF -DMBEDTLS_ROOT_DIR=../mbedtls"
55
+ os : linux
51
56
allow_failures :
52
57
- env : COVERITY=1
53
58
- env :
Original file line number Diff line number Diff line change 6
6
exit $? ;
7
7
fi
8
8
9
+ if [ -n " $MBEDTLS " ];
10
+ then
11
+ ./script/mbedtls.sh;
12
+ fi
13
+
9
14
mkdir _build
10
15
cd _build
11
16
# shellcheck disable=SC2086
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ git clone https://github.com/ARMmbed/mbedtls.git mbedtls
4
+ cd mbedtls
5
+ git checkout mbedtls-2.1.2
6
+ make CFLAGS=' -fPIC -fpic' -j2 lib
You can’t perform that action at this time.
0 commit comments