We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 629ac15 commit 2b47a11Copy full SHA for 2b47a11
.github/workflows/build_and_test.yml
@@ -43,14 +43,16 @@ jobs:
43
uses: actions/checkout@v3
44
with:
45
path: opentelemetry-matlab
46
+ - name: Install ninja-build
47
+ run: choco install ninja
48
- name: Install MATLAB
49
uses: matlab-actions/setup-matlab@v2
50
51
products: MATLAB_Compiler
52
- name: Build OpenTelemetry-Matlab
53
working-directory: opentelemetry-matlab
54
run: |
- cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${{ env.OPENTELEMETRY_MATLAB_INSTALL }}
55
+ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${{ env.OPENTELEMETRY_MATLAB_INSTALL }}
56
cmake --build build --config Release --target install
57
- name: Run tests
58
env:
0 commit comments