summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2024-06-19 13:04:36 +0300
committerGitHub <noreply@github.com>2024-06-19 13:04:36 +0300
commita04a953cab583f0229e7b4b506346e3e9a85c8d0 (patch)
treeec8889ab8c83c61ba42f79133fc46662c66b95c6
parent623494a478134432fd2d7ee40135770a3340674f (diff)
codecov : remove (#8004)
-rw-r--r--.github/labeler.yml1
-rw-r--r--.github/workflows/code-coverage.yml40
-rw-r--r--codecov.yml14
3 files changed, 0 insertions, 55 deletions
diff --git a/.github/labeler.yml b/.github/labeler.yml
index 97d739b5..5c12bab7 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -42,7 +42,6 @@ build:
- cmake/**
- CMakeLists.txt
- CMakePresets.json
- - codecov.yml
examples:
- changed-files:
- any-glob-to-any-file: examples/**
diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml
deleted file mode 100644
index f12c558f..00000000
--- a/.github/workflows/code-coverage.yml
+++ /dev/null
@@ -1,40 +0,0 @@
-name: Code Coverage
-on: [push, pull_request]
-
-env:
- GGML_NLOOP: 3
- GGML_N_THREADS: 1
-
-concurrency:
- group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}
- cancel-in-progress: true
-
-jobs:
- run:
- runs-on: ubuntu-20.04
- steps:
- - name: Checkout
- uses: actions/checkout@v4
-
- - name: Dependencies
- run: |
- sudo apt-get update
- sudo apt-get install build-essential gcc-8 lcov
-
- - name: Build
- run: CC=gcc-8 make -j LLAMA_CODE_COVERAGE=1 tests
-
- - name: Run tests
- run: CC=gcc-8 make test
-
- - name: Generate coverage report
- run: |
- make coverage
- make lcov-report
-
- - name: Upload coverage to Codecov
- uses: codecov/codecov-action@v3
- env:
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- with:
- files: lcov-report/coverage.info
diff --git a/codecov.yml b/codecov.yml
deleted file mode 100644
index a301c5b2..00000000
--- a/codecov.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-comment: off
-
-coverage:
- status:
- project:
- default:
- target: auto
- threshold: 0
- base: auto
- patch:
- default:
- target: auto
- threshold: 0
- base: auto