Skip to content

Commit

Permalink
remove codecov (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba-- authored Jan 30, 2020
1 parent d50a123 commit b41b3b3
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -38,7 +32,6 @@ jobs:
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v2

- name: Configure
run: cmake .
- name: Build
Expand Down
4 changes: 0 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b41b3b3

Please sign in to comment.