From 62d7ed8a789849bb005798931bb881af5f5a3cbd Mon Sep 17 00:00:00 2001 From: Andy Coates <8012398+big-andy-coates@users.noreply.github.com> Date: Tue, 16 Jan 2024 17:20:30 +0000 Subject: [PATCH] Update build.yml (#236) Generation of test coverage data is currently failing with error: ``` Unable to read execution data file /home/runner/work/creek-system-test-gradle-plugin/creek-system-test-gradle-plugin/build/jacoco/test.exec ``` But only on build servers. Though I'm loathed to do it, I'm disabling coverage until I have time to investigate, as this is blocking builds for dependency updates etc. Task #235 tracks fixing the issue. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 20be1e4..df78f52 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,7 +45,7 @@ jobs: - name: Build env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} - run: ./gradlew build coveralls + run: ./gradlew build - name: Publish if: github.event_name == 'push' || github.event.inputs.publish_artifacts == 'true' env: @@ -78,4 +78,4 @@ jobs: - name: Create GitHut Release uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15 with: - generate_release_notes: true \ No newline at end of file + generate_release_notes: true