Skip to content

Commit 1752e9e

Browse files
committed
fix: file system loop
1 parent b1e401a commit 1752e9e

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,15 @@ jobs:
131131
# Share repository cache between workflows.
132132
repository-cache: true
133133

134+
# Symlinks on windows are broken with bazel
135+
- name: Fix symlink on Windows
136+
if: runner.os == 'Windows'
137+
shell: powershell
138+
run: |
139+
Get-ChildItem -Path example/instrument-hooks -Force | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue
140+
Copy-Item -Path dist -Destination example/instrument-hooks/dist -Recurse
141+
Copy-Item -Path includes -Destination example/instrument-hooks/includes -Recurse
142+
134143
- name: Build benchmarks
135144
working-directory: example
136145
run: |

example/instrument-hooks

Lines changed: 0 additions & 1 deletion
This file was deleted.

example/instrument-hooks/dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../dist

example/instrument-hooks/includes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../includes

0 commit comments

Comments
 (0)