diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 77ed9ab175..a3668c7e4a 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -40,7 +40,9 @@ jobs: with: name: service-unit-test-log path: | + **/target/test-reports/** **/target/unit-tests.log + - name: Upload coverage to Codecov if: matrix.java == 8 uses: codecov/codecov-action@v3 @@ -77,6 +79,7 @@ jobs: with: name: spark-${{ matrix.spark }}-unit-test-log path: | + **/target/test-reports/** **/target/unit-tests.log spark3: @@ -140,6 +143,7 @@ jobs: with: name: spark-${{ matrix.spark }}-unit-test-log path: | + **/target/test-reports/** **/target/unit-tests.log flink: @@ -179,6 +183,7 @@ jobs: with: name: flink-${{ matrix.flink }}-unit-test-log path: | + **/target/test-reports/** **/target/unit-tests.log mr: @@ -211,3 +216,5 @@ jobs: name: mr-unit-test-log path: | **/target/test/ + **/target/test-reports/** + **/target/unit-tests.log diff --git a/.github/workflows/sbt.yml b/.github/workflows/sbt.yml index 293ec3c30c..f90e65e37d 100644 --- a/.github/workflows/sbt.yml +++ b/.github/workflows/sbt.yml @@ -59,6 +59,7 @@ jobs: name: service-java-${{ matrix.java }}-scala-${{ matrix.scala }}-unit-test-log path: | **/target/test-reports/** + **/target/unit-tests.log spark2: runs-on: ubuntu-22.04 @@ -90,7 +91,7 @@ jobs: name: spark-${{ matrix.spark }}-unit-test-log path: | **/target/test-reports/** - + **/target/unit-tests.log spark3: runs-on: ubuntu-22.04 strategy: @@ -193,6 +194,7 @@ jobs: name: spark-${{ matrix.spark }}-scala-${{ matrix.scala }}-unit-test-log path: | **/target/test-reports/** + **/target/unit-tests.log flink: runs-on: ubuntu-22.04 @@ -228,6 +230,7 @@ jobs: name: flink-${{ matrix.flink }}-unit-test-log path: | **/target/test-reports/** + **/target/unit-tests.log mr: runs-on: ubuntu-22.04 @@ -255,3 +258,5 @@ jobs: name: mr-unit-test-log path: | **/target/test/ + **/target/test-reports/** + **/target/unit-tests.log