We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02590c5 commit c087b38Copy full SHA for c087b38
.github/workflows/test_linux_build.yml
@@ -25,6 +25,14 @@ jobs:
25
run: |
26
cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DWITH_OTLP_GRPC=OFF -DWITH_OTLP_FILE=OFF -DCMAKE_INSTALL_PREFIX=${{ env.OPENTELEMETRY_MATLAB_INSTALL }}
27
cmake --build build --config Release --target install
28
+ - name: Run tests
29
+ env:
30
+ # Add the installation directory to the MATLAB Search Path by
31
+ # setting the MATLABPATH environment variable.
32
+ MATLABPATH: ${{ env.OPENTELEMETRY_MATLAB_INSTALL }}
33
+ uses: matlab-actions/run-tests@v2
34
+ with:
35
+ select-by-folder: opentelemetry-matlab/test
36
- name: Compress into single artifact
37
working-directory: ${{ github.workspace }}
38
run: tar -czf otel-matlab-ubuntu.tar.gz otel_matlab_install
0 commit comments