Fix pip install hanging by moving C tests out of build.sh. (#52)

* Remove C tests from build.sh.

* Run C tests in Travis.
This commit is contained in:
Robert Nishihara
2016-11-20 21:02:54 -08:00
committed by Philipp Moritz
parent f267da6aa8
commit 9ed56c23db
3 changed files with 10 additions and 4 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ CC = gcc
CFLAGS = -g -Wall -Wno-typedef-redefinition --std=c99 -D_XOPEN_SOURCE=500 -D_POSIX_C_SOURCE=200809L -fPIC -I. -Ithirdparty -Ithirdparty/ae
BUILD = build
all: hiredis $(BUILD)/libcommon.a
all: hiredis redis $(BUILD)/libcommon.a
$(BUILD)/libcommon.a: event_loop.o common.o task.o io.o net.o state/redis.o state/table.o state/object_table.o state/task_table.o state/db_client_table.o thirdparty/ae/ae.o thirdparty/sha256.o
ar rcs $@ $^