diff --git a/.github/workflows/test-java-os-mix.yml b/.github/workflows/test-java-os-mix.yml index 97a9ddde..0733e98e 100644 --- a/.github/workflows/test-java-os-mix.yml +++ b/.github/workflows/test-java-os-mix.yml @@ -39,10 +39,22 @@ jobs: distribution: temurin java-version: ${{ matrix.java-version }} - - name: Execute integration test + - name: Execute integration test (Unix) + if: runner.os != 'Windows' run: | uname -a + find * -ls ./gradlew --version ./gradlew info ./gradlew integrationTestOnly --scan + - name: Execute integration test (Windows) + if: runner.os == 'Windows' + shell: pwsh + run: | + uname -a + Get-ChildItem -Recurse -File | Format-Table Name, Length, LastWriteTime + cmd /c "echo off && gradlew.bat --version" + cmd /c "echo off && gradlew.bat info" + cmd /c "echo off && gradlew.bat integrationTestOnly --scan" + Get-ChildItem -Recurse -File ./integration-test | Format-Table Name, Length, LastWriteTime