소스 검색

build without -Werror on travis

... so deprecation warnings won't break the build
Stefan Siegl 6 년 전
부모
커밋
e8fd9589dd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Dockerfile.travis

+ 1 - 1
Dockerfile.travis

@@ -18,5 +18,5 @@ ADD . /app
 WORKDIR /app
 
 RUN phpize
-RUN ./configure CXXFLAGS="-Wall -Wno-write-strings -Werror" LDFLAGS="-lstdc++" --with-v8js=/opt/libv8-$V8VER/
+RUN ./configure CXXFLAGS="-Wall -Wno-write-strings" LDFLAGS="-lstdc++" --with-v8js=/opt/libv8-$V8VER/
 RUN make -j4