Skip to content

Commit d90ccce

Browse files
committed
try another workaround
1 parent 5e77d28 commit d90ccce

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build_and_test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ jobs:
5858
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
5959
cmake -S . -B build -G Ninja -DCMAKE_CXX_COMPILER="cl.exe" -DCMAKE_C_COMPILER="cl.exe" -DCMAKE_BUILD_TYPE=Release -DWITH_EXAMPLES=ON -DUSE_BATCH_FOR_MCC=ON -DCMAKE_INSTALL_PREFIX=${{ env.OPENTELEMETRY_MATLAB_INSTALL }}
6060
cmake --build build --config Release --target install
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 {} \;
6167
- name: Run tests
6268
env:
6369
# Add the installation directory to the MATLAB Search Path by

0 commit comments

Comments
 (0)