Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build_and_test_full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ jobs:
needs: get_version
env:
OPENTELEMETRY_MATLAB_INSTALL: "${{ github.workspace }}/otel_matlab_install"
OPENTELEMETRY_MAC_VERSION: "${{ matrix.os }}"
steps:
- name: Download OpenTelemetry-Matlab source
uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_and_test_simple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ jobs:
needs: get_version
env:
OPENTELEMETRY_MATLAB_INSTALL: "${{ github.workspace }}/otel_matlab_install"
OPENTELEMETRY_MAC_VERSION: "${{ matrix.os }}"
steps:
- name: Download OpenTelemetry-Matlab source
uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ jobs:
os: [macos-15-intel, macos-14] # runs on Mac with both Intel (macos-15-intel) and Apple Silicon (macos-14) processors
env:
OPENTELEMETRY_MATLAB_INSTALL: "${{ github.workspace }}/otel_matlab_install"
OPENTELEMETRY_MAC_VERSION: "${{ matrix.os }}"
steps:
- name: Download OpenTelemetry-Matlab source
uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions test/texamples.m
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,9 @@ function testAsyncMetrics(testCase)
function testWebread(testCase)
% testWebread: webread_example in examples/webread folder

% filter test on MacOS-15-Intel
macIntel = ismac && contains(getenv("OPENTELEMETRY_MAC_VERSION"),"intel");
testCase.assumeFalse(macIntel,"Filtered test due to failures launching CppServer on macos-15-intel")
% use default location to look for server, filter out if not
% found
serverfolder = fullfile(fileparts(mfilename('fullpath')), "..", "build", "examples", "webread");
Expand Down
Loading