From 3b1205791b1e57ad5adb0bef961d1cd0f3027980 Mon Sep 17 00:00:00 2001 From: Daniel Sudzilouski Date: Thu, 24 Mar 2022 09:44:25 -0700 Subject: [PATCH] autodetect on codecov uploader seems to work --- .github/workflows/CI.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a625a60a5..9fc0449d4 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -131,14 +131,6 @@ jobs: mkdir -p /home/runner/.ivy2/cache/ # some scripts assume that this folder exists ${{ matrix.script }} - - name : "Aggregate codecov reports" - run: | - # copy all jacoco files into shared dir - # let codecov handle the merging process - mkdir -p /tmp/jacoco/ - for FILE in `find ./ | grep jacoco.xml`; do cp $FILE /tmp/jacoco/$RANDOM-$RANDOM.xml; done; - ls /tmp/jacoco/ - - uses: codecov/codecov-action@v2 # for some external tests like scald.rb repl we are not able to easily collect coverage info if: ${{ matrix.TEST_TARGET != null && matrix.TEST_TARGET != '' }} @@ -146,4 +138,3 @@ jobs: name: codecov fail_ci_if_error: true verbose: true - directory: /tmp/jacoco/