From b040379d3fbee092623c2b804bd1e41cfb1b57a3 Mon Sep 17 00:00:00 2001 From: Denis Smetannikov Date: Thu, 6 May 2021 12:27:11 +0300 Subject: [PATCH 1/6] Send coverage report --- .github/workflows/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6741f71..3a0e398 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -65,6 +65,13 @@ jobs: continue-on-error: ${{ matrix.experimental }} run: make test --no-print-directory + - uses: codecov/codecov-action@v1 + with: + token: ${{ secrets.CODECOV_TOKEN }} + directory: ./coverage_xml/ + fail_ci_if_error: true + verbose: true + linters: name: Linters From 6d8dfeb8e332200ad1f0d4136c528d9d96418d91 Mon Sep 17 00:00:00 2001 From: Denis Smetannikov Date: Thu, 6 May 2021 12:30:07 +0300 Subject: [PATCH 2/6] Fixes --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3a0e398..8364964 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -68,8 +68,8 @@ jobs: - uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} - directory: ./coverage_xml/ - fail_ci_if_error: true + directory: ./build/coverage_xml/ + fail_ci_if_error: false verbose: true From de3a35320a194f3ebc1861eb1abaad29da93f70f Mon Sep 17 00:00:00 2001 From: Denis Smetannikov Date: Thu, 6 May 2021 12:40:24 +0300 Subject: [PATCH 3/6] Fixes --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8364964..c19e02e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -66,9 +66,10 @@ jobs: run: make test --no-print-directory - uses: codecov/codecov-action@v1 + continue-on-error: ${{ matrix.experimental }} with: token: ${{ secrets.CODECOV_TOKEN }} - directory: ./build/coverage_xml/ + files: ./build/coverage_xml/*.xml fail_ci_if_error: false verbose: true From 0d1133d7c53f5257dba6445a8d7d14ace9c05d3a Mon Sep 17 00:00:00 2001 From: Denis Smetannikov Date: Thu, 6 May 2021 12:45:05 +0300 Subject: [PATCH 4/6] Fixes --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c19e02e..ccef0a7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -69,9 +69,8 @@ jobs: continue-on-error: ${{ matrix.experimental }} with: token: ${{ secrets.CODECOV_TOKEN }} - files: ./build/coverage_xml/*.xml + files: ./build/coverage_xml/main.xml fail_ci_if_error: false - verbose: true linters: From 882c4631b74587f45c03111c5832ce308cbefced Mon Sep 17 00:00:00 2001 From: Denis Smetannikov Date: Thu, 6 May 2021 12:55:50 +0300 Subject: [PATCH 5/6] Fixes --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ccef0a7..d397b3e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -65,12 +65,14 @@ jobs: continue-on-error: ${{ matrix.experimental }} run: make test --no-print-directory - - uses: codecov/codecov-action@v1 + - name: Codecov Report + uses: codecov/codecov-action@v1 continue-on-error: ${{ matrix.experimental }} with: token: ${{ secrets.CODECOV_TOKEN }} files: ./build/coverage_xml/main.xml - fail_ci_if_error: false + directory: ./build/coverage_xml/ + fail_ci_if_error: true linters: From c3477ea46def953745ef1fe4e1f308bcebe3ff33 Mon Sep 17 00:00:00 2001 From: Denis Smetannikov Date: Thu, 6 May 2021 12:56:13 +0300 Subject: [PATCH 6/6] Fixes --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d397b3e..3709451 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -70,7 +70,7 @@ jobs: continue-on-error: ${{ matrix.experimental }} with: token: ${{ secrets.CODECOV_TOKEN }} - files: ./build/coverage_xml/main.xml + files: ./build/coverage_xml/main.xml, ./build/coverage_xml/*.xml directory: ./build/coverage_xml/ fail_ci_if_error: true