There was an error while loading. Please reload this page.
1 parent 671dd9b commit 20cc318Copy full SHA for 20cc318
1 file changed
.github/workflows/bazel.yml
@@ -199,6 +199,13 @@ jobs:
199
crates: rust/Cargo.Bazel.lock
200
repository-cache: true
201
bazelrc: common --color=yes
202
+ # Workaround for rules_ruby MSYS2 "infinite symlink expansion detected" on Windows
203
+ - name: Remove MSYS2 recursive symlink
204
+ if: inputs.os == 'windows'
205
+ shell: bash
206
+ run: |
207
+ [ -L "D:/b/external/rules_ruby++ruby+ruby/dist/msys64/etc/mtab-" ] && \
208
+ rm "D:/b/external/rules_ruby++ruby+ruby/dist/msys64/etc/mtab-"
209
- name: Setup curl for Ubuntu
210
if: inputs.os == 'ubuntu'
211
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev
0 commit comments