Skip to content

Commit aa52261

Browse files
committed
[py] Workaround for Bazel long path issue
1 parent 2679906 commit aa52261

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/bazel.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@ jobs:
126126
with:
127127
bazelisk-cache: true
128128
bazelrc: common --color=yes
129+
# Workaround for long path issues: https://github.com/bazelbuild/bazel/pull/22532
130+
output-base: ${{ inputs.os == 'windows' && 'D://b || '' }}
129131
cache-version: 2
130132
disk-cache: ${{ inputs.cache-key }}
131133
external-cache: |

.github/workflows/ci-python.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464
include:
6565
- os: ubuntu
6666
- os: macos
67+
- os: windows
6768
with:
6869
name: Unit Tests (${{ matrix.os }})
6970
os: ${{ matrix.os }}
@@ -99,6 +100,10 @@ jobs:
99100
os: ubuntu
100101
- browser: firefox
101102
os: ubuntu
103+
- browser: chrome
104+
os: windows
105+
- browser: edge
106+
os: windows
102107
with:
103108
name: Integration Tests (${{ matrix.browser }}, ${{ matrix.os }})
104109
browser: ${{ matrix.browser }}

0 commit comments

Comments
 (0)