Skip to content

Commit 415ea3a

Browse files
committed
Try to find files in current directory
1 parent 8dd588c commit 415ea3a

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/test-java-os-mix.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,22 @@ jobs:
3939
distribution: temurin
4040
java-version: ${{ matrix.java-version }}
4141

42-
- name: Execute integration test
42+
- name: Execute integration test (Unix)
43+
if: runner.os != 'Windows'
4344
run: |
4445
uname -a
46+
find * -ls
4547
./gradlew --version
4648
./gradlew info
4749
./gradlew integrationTestOnly --scan
4850
51+
- name: Execute integration test (Windows)
52+
if: runner.os == 'Windows'
53+
shell: pwsh
54+
run: |
55+
uname -a
56+
Get-ChildItem -Recurse -File | Format-Table Name, Length, LastWriteTime
57+
cmd /c "echo off && ./gradlew.bat --version"
58+
cmd /c "echo off && ./gradlew.bat info"
59+
cmd /c "echo off && ./gradlew.bat integrationTestOnly --scan"
60+
Get-ChildItem -Recurse -File ./integration-test | Format-Table Name, Length, LastWriteTime

0 commit comments

Comments
 (0)