Skip to content

Commit

Permalink
Avoid failing builds on Windows due to long paths
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnatBeresnev committed May 6, 2024
1 parent bb8b04d commit 1d31c35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/tests-smoke.yml
Expand Up @@ -17,6 +17,8 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Support longpaths # Avoid failing tests on Windows with "cannot create directory at X. Filename too long"
run: git config --system core.longpaths true
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests-thorough.yml
Expand Up @@ -15,6 +15,8 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Support longpaths # Avoid failing tests on Windows with "cannot create directory at X. Filename too long"
run: git config --system core.longpaths true
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
Expand Down

0 comments on commit 1d31c35

Please sign in to comment.