Skip to content

Commit

Permalink
Try to find files in current directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman committed Mar 29, 2024
1 parent 8dd588c commit b2c4628
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/test-java-os-mix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
./gradlew.bat --version
./gradlew.bat info
./gradlew.bat integrationTestOnly --scan
Get-ChildItem -Recurse -File ./integration-test | Format-Table Name, Length, LastWriteTime

0 comments on commit b2c4628

Please sign in to comment.