From 9026e14289eaf45a00ddddb8730f2092b956d99a Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Fri, 10 May 2024 19:32:54 +0200 Subject: ci.yml: move codecov.yml and point it from config --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af4e56b26..48bd1078b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,7 +71,8 @@ jobs: - name: codecov uses: codecov/codecov-action@5ecb98a3c6b747ed38dc09f787459979aebb39be # v4.3.1 with: - files: gopath/src/github.com/google/syzkaller/.coverage.txt + codecov_yml_path: ${{env.GOPATH}}/src/github.com/google/syzkaller/.github/codecov.yml + file: ${{env.GOPATH}}/src/github.com/google/syzkaller/.coverage.txt flags: unittests token: ${{ secrets.CODECOV_TOKEN }} verbose: true @@ -96,7 +97,8 @@ jobs: - name: codecov uses: codecov/codecov-action@5ecb98a3c6b747ed38dc09f787459979aebb39be # v4.3.1 with: - files: gopath/src/github.com/google/syzkaller/.coverage.txt + codecov_yml_path: ${{env.GOPATH}}/src/github.com/google/syzkaller/.github/codecov.yml + file: ${{env.GOPATH}}/src/github.com/google/syzkaller/.coverage.txt flags: dashboard token: ${{ secrets.CODECOV_TOKEN }} verbose: true -- cgit mrf-deployment