diff options
author | lijunlong <lijunlong@openresty.com> | 2023-02-22 11:28:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-22 11:28:15 +0800 |
commit | de93a78d3002ee72bb1c7e3a629d67e19623a4ae (patch) | |
tree | fddd9ba083aae1c3f58868e313aa0540885951b8 /.travis.yml | |
parent | 1dff61d9bf390372124c13443e0131a96383f5bc (diff) | |
download | lua-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.yml | 4 |
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 | ||
48 | script: | 48 | script: |
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=$? |