0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-19 00:25:18 +00:00

build without -Werror on travis

... so deprecation warnings won't break the build
This commit is contained in:
Stefan Siegl 2018-07-13 15:52:12 +02:00
parent b3ddc25db1
commit e8fd9589dd
No known key found for this signature in database
GPG Key ID: 73942AF5642F3DDA

View File

@ -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