File tree Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Original file line number Diff line number Diff 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 : |
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ ../../dist
Original file line number Diff line number Diff line change 1+ ../../includes
You can’t perform that action at this time.
0 commit comments