aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorlijunlong <lijunlong@openresty.com>2023-02-22 11:28:15 +0800
committerGitHub <noreply@github.com>2023-02-22 11:28:15 +0800
commitde93a78d3002ee72bb1c7e3a629d67e19623a4ae (patch)
treefddd9ba083aae1c3f58868e313aa0540885951b8 /.travis.yml
parent1dff61d9bf390372124c13443e0131a96383f5bc (diff)
downloadlua-cjson-de93a78d3002ee72bb1c7e3a629d67e19623a4ae.tar.gz
lua-cjson-de93a78d3002ee72bb1c7e3a629d67e19623a4ae.tar.bz2
lua-cjson-de93a78d3002ee72bb1c7e3a629d67e19623a4ae.zip
feature: Add option to skip invalid value types.
Co-authored-by: Jesper Lundgren <jesperlundgren@exosite.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index b07f3dc..91f73ff 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -46,8 +46,8 @@ install:
46 - cd .. 46 - cd ..
47 47
48script: 48script:
49 - cppcheck -i ./luajit2 -i --force --error-exitcode=1 --enable=warning . > build.log 2>&1 || (cat build.log && exit 1) 49 - cppcheck -i ./luajit2 --force --error-exitcode=1 --enable=warning . > build.log 2>&1 || (cat build.log && exit 1)
50 - sh runtests.sh 50 - bash runtests.sh
51 - make 51 - make
52 - prove -Itests tests 52 - prove -Itests tests
53 - TEST_LUA_USE_VALGRIND=1 prove -Itests tests > build.log 2>&1; export e=$? 53 - TEST_LUA_USE_VALGRIND=1 prove -Itests tests > build.log 2>&1; export e=$?