From 2e567c08c7b2c5574f42a5cdddafcc625fbfb516 Mon Sep 17 00:00:00 2001 From: Thibault Gagnaux Date: Mon, 29 Nov 2021 08:44:41 +0100 Subject: debug: logs gradle with more info and tries to capture and upload the javadump --- .github/workflows/build.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90d2c8b..e43b9a1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,8 +28,16 @@ jobs: - name: Run Unit & Functional Tests run: | if [ "$RUNNER_OS" = "Windows" ]; then - ./gradlew.bat clean check + ./gradlew.bat clean check --info else ./gradlew clean check fi - shell: bash \ No newline at end of file + shell: bash + + - name: Upload Unit Test Results + if: always() + uses: actions/upload-artifact@v2 + with: + name: jvm-dump.txt + path: frege-gradle-plugin/**/javacore*.txt + if: runner.os == 'Windows' \ No newline at end of file -- cgit