LUCENE-10531: Disable distribution test (gui test) on windows. (#917)

This commit is contained in:
Tomoko Uchida 2022-05-21 23:46:07 +09:00 committed by GitHub
parent 10a43d916e
commit 59b6d41bd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -19,8 +19,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# we run the distribution tests on all major OSs.
os: [ubuntu-latest, macos-latest, windows-latest]
# we want to run the distribution tests on all major OSs, but it's occasionally too slow (or hangs or the forked process is not started at all..., not sure the cause) on windows.
#os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2