Skip to content

Commit

Permalink
#318 Align Windows integration test with Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman authored and Gerd Aschemann (EXT) committed Nov 19, 2024
1 parent 14d035d commit 1b756e3
Showing 1 changed file with 8 additions and 17 deletions.
25 changes: 8 additions & 17 deletions .github/workflows/test-java-os-mix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,6 @@ jobs:
- name: Check out
uses: actions/checkout@v4

- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v4

- name: Download (CLI) Artifacts
uses: dawidd6/action-download-artifact@v3
with:
workflow: gradle-build.yml
name: CLI
path: htmlSanityCheck-cli/build/install

- name: Make file executable
run: chmod +x htmlSanityCheck-cli/build/install/hsc/bin/hsc

- name: Setup JDK
uses: actions/setup-java@v4
with:
Expand All @@ -50,21 +37,25 @@ jobs:
name: build-artifacts
path: .

- name: Execute integration test (on Unixes)
- name: Make HSC file executable
run: chmod +x htmlSanityCheck-cli/build/install/hsc/bin/hsc

- name: Execute (Gradle Plugin) integration test (on Unixes)
if: runner.os != 'Windows'
run: |
cd integration-test/gradle-plugin
uname -a
./gradlew --version
./gradlew htmlSanityCheck --scan
- name: Execute integration test (Windows)
- name: Execute (Gradle Plugin) integration test (Windows)
if: runner.os == 'Windows'
shell: pwsh
run: |
cd integration-test/gradle-plugin
uname -a
cmd /c "echo off && gradlew.bat --version"
cmd /c "echo off && gradlew.bat info"
cmd /c "echo off && gradlew.bat integrationTestOnly --scan"
cmd /c "echo off && gradlew.bat htmlSanityCheck --scan"
# If we ever need to debug the file system contents
# Get-ChildItem -Recurse -File | Format-Table Name, Length, LastWriteTime
Expand Down

0 comments on commit 1b756e3

Please sign in to comment.