File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed
Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -50,11 +50,13 @@ jobs:
5050 python3 testA.py
5151 cd ..
5252
53- - name : Code Coverage
53+ - name : Code Coverage (skipping broken)
54+ if : false
5455 run : |
5556 gcov -abcfu CMakeFiles/pylua.dir/src/lua_py.c
5657 gcov -abcfu CMakeFiles/pylua.dir/src/py_lua.c
5758 gcov -abcfu CMakeFiles/pylua.dir/src/convert.c
5859
59- - name : Upload Code Coverage
60+ - name : Upload Code Coverage (skipping broken)
61+ if : false
6062 uses : codecov/codecov-action@v1
Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ message(STATUS "LUA_LIBRARIES = ${LUA_LIBRARIES}")
1919message (STATUS "LUA_INCLUDE_DIRS = ${LUA_INCLUDE_DIRS} " )
2020message (STATUS "LUA_CFLAGS_OTHER = ${LUA_CFLAGS_OTHER} " )
2121
22- if (CMAKE_BUILD_TYPE STREQUAL "Debug" AND NOT WIN32 )
23- message (STATUS "Building in Debug, Therefore compiling with Code Coverage" )
24- target_compile_options (pylua PRIVATE -coverage)
25- target_link_options (pylua PRIVATE -coverage)
26- endif ()
22+ # if (CMAKE_BUILD_TYPE STREQUAL "Debug" AND NOT WIN32)
23+ # message(STATUS "Building in Debug, Therefore compiling with Code Coverage")
24+ # target_compile_options(pylua PRIVATE -coverage)
25+ # target_link_options(pylua PRIVATE -coverage)
26+ # endif()
2727
2828target_include_directories (pylua PRIVATE "src/" )
2929
You can’t perform that action at this time.
0 commit comments