File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -39,10 +39,22 @@ jobs:
39
39
distribution : temurin
40
40
java-version : ${{ matrix.java-version }}
41
41
42
- - name : Execute integration test
42
+ - name : Execute integration test (Unix)
43
+ if : runner.os != 'Windows'
43
44
run : |
44
45
uname -a
46
+ find * -ls
45
47
./gradlew --version
46
48
./gradlew info
47
49
./gradlew integrationTestOnly --scan
48
50
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
You can’t perform that action at this time.
0 commit comments