We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d90ccce commit 57b7046Copy full SHA for 57b7046
1 file changed
.github/workflows/build_and_test.yml
@@ -61,9 +61,8 @@ jobs:
61
62
# Works around https://github.com/actions/runner-images/issues/10055
63
- name: Remove conflicting libraries
64
- shell: bash -l {0}
65
run: |
66
- find "C:/hostedtoolcache/windows/Java_Temurin-Hotspot_jdk" -name "msvcp140.dll" -exec rm {} \;
+ Get-ChildItem -Path "C:\hostedtoolcache\windows" -File -Include msvcp*.dll,concrt*.dll,vccorlib*.dll,vcruntime*.dll -Recurse | Remove-Item -Force -Verbose
67
- name: Run tests
68
env:
69
# Add the installation directory to the MATLAB Search Path by
0 commit comments