File tree 2 files changed +13
-5
lines changed
2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
1
language : c
2
+ sudo : false
2
3
compiler :
3
4
- gcc
4
5
- clang
5
6
7
+ addons :
8
+ apt :
9
+ packages :
10
+ - libc6-dbg
11
+ - libc6-dev
12
+ - libc6:i386
13
+ - libc6-dev-i386
14
+ - libc6-dbg:i386
15
+ - gcc-multilib
16
+ - valgrind
17
+
6
18
env :
7
19
- CFLAGS="-Werror"
8
20
- PRE="valgrind --track-origins=yes --leak-check=full"
9
21
- TARGET="32bit" TARGET_VARS="32bit-vars" CFLAGS="-Werror"
10
22
- TARGET="32bit" TARGET_VARS="32bit-vars" PRE="valgrind --track-origins=yes --leak-check=full"
11
23
12
- install :
13
- - sudo apt-get update -qq
14
- - sudo apt-get install libc6-dbg libc6-dev libc6-i686:i386 libc6-dev-i386 libc6-dbg:i386 valgrind -y
15
-
16
24
script : make $TARGET CFLAGS="$CFLAGS" && make check PRE="$PRE" && make $TARGET_VARS hiredis-example
Original file line number Diff line number Diff line change @@ -215,4 +215,4 @@ coverage: gcov
215
215
noopt :
216
216
$(MAKE ) OPTIMIZATION=" "
217
217
218
- .PHONY : all test check clean dep install 32bit gprof gcov noopt
218
+ .PHONY : all test check clean dep install 32bit 32bit-vars gprof gcov noopt
You can’t perform that action at this time.
0 commit comments