From bfe9c43d83b8648dd200f68fafe108582bc38061 Mon Sep 17 00:00:00 2001 From: Phred Date: Thu, 7 Oct 2021 09:16:41 -0500 Subject: [PATCH] jacoco doesn't support LCOV :cry: --- .github/workflows/ci.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1083cb6d399..8fd49f0675b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,14 +42,18 @@ jobs: # running in parallel causes some tests to fail - run: mvn test -B # -T 1C - - run: > + - env: + CI_BUILD_NUMBER: ${{ github.run_id }} + # this will need to be updated to work on the main branch + CI_BUILD_URL: https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }}/checks + CI_BRANCH: ${{ github.head_ref }} + CI_NAME: github + CI_PULL_REQUEST: ${{ github.event.pull_request.number }} + run: > mvn jacoco:report jacoco:report-aggregate verify + coveralls:report --define jacoco.skip=false - - - name: Coveralls GitHub Action - uses: coverallsapp/github-action@1.1.3 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} + --define repoToken=${{ secrets.GITHUB_TOKEN }}