remove codecov (#118)

This commit is contained in:
Kuba Podgórski 2020-01-30 23:25:47 +01:00 committed by GitHub
parent d50a1239d0
commit b41b3b3b0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 13 deletions

View File

@ -7,23 +7,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Configure
run: cmake -DENABLE_COVERAGE=ON -DSANITIZE_ADDRESS=On .
run: cmake -DSANITIZE_ADDRESS=On .
- name: Build
run: cmake --build .
- name: Test
run: ASAN_OPTIONS=detect_leaks=0 LSAN_OPTIONS=verbosity=1:log_threads=1 ctest -VV
- name: CodeCov
run: bash <(curl -s https://codecov.io/bash)
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Configure
run: |
pip3 install scan-build
@ -38,7 +32,6 @@ jobs:
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v2
- name: Configure
run: cmake .
- name: Build

View File

@ -16,10 +16,6 @@ elseif ("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU" OR
"${CMAKE_C_COMPILER_ID}" STREQUAL "Clang" OR
"${CMAKE_C_COMPILER_ID}" STREQUAL "AppleClang")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -Wall -Wextra -Werror -pedantic")
if(ENABLE_COVERAGE)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -O0 -fprofile-arcs -ftest-coverage")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --coverage")
endif()
endif (MSVC)
# zip

View File

@ -3,7 +3,6 @@ This is done by hacking awesome [miniz](https://code.google.com/p/miniz) library
[![Build](https://github.com/kuba--/zip/workflows/build/badge.svg)](https://github.com/kuba--/zip/actions?query=workflow%3Abuild)
[![Version](https://badge.fury.io/gh/kuba--%2Fzip.svg)](https://github.com/kuba--/zip/releases)
[![Codecov](https://codecov.io/gh/kuba--/zip/branch/master/graph/badge.svg)](https://codecov.io/gh/kuba--/zip)
# The Idea