We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e77d28 commit d90ccceCopy full SHA for d90ccce
1 file changed
.github/workflows/build_and_test.yml
@@ -58,6 +58,12 @@ jobs:
58
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
59
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 }}
60
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 {} \;
67
- name: Run tests
68
env:
69
# Add the installation directory to the MATLAB Search Path by
0 commit comments