File tree 1 file changed +4
-7
lines changed
1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 57
57
external-types :
58
58
strategy :
59
59
matrix :
60
- os : [ windows-latest, ubuntu-latest ]
61
60
example : [opentelemetry, opentelemetry-sdk, opentelemetry-otlp, opentelemetry-zipkin]
62
- runs-on : ${{ matrix.os }}
61
+ runs-on : ubuntu-latest # TODO: Check if this could be covered on Windows. The step used currently fails on Windows.
63
62
steps :
64
63
- uses : actions/checkout@v4
65
64
- uses : dtolnay/rust-toolchain@nightly
@@ -107,10 +106,7 @@ jobs:
107
106
cargo test --manifest-path=opentelemetry-jaeger/Cargo.toml --features rt-tokio &&
108
107
cargo test --manifest-path=opentelemetry-zipkin/Cargo.toml
109
108
cargo-deny :
110
- strategy :
111
- matrix :
112
- os : [ windows-latest, ubuntu-latest ]
113
- runs-on : ${{ matrix.os }}
109
+ runs-on : ubuntu-latest # This is only supported on Linux
114
110
continue-on-error : true # Prevent sudden announcement of a new advisory from failing ci
115
111
steps :
116
112
- uses : actions/checkout@v4
@@ -160,4 +156,5 @@ jobs:
160
156
- name : Upload to codecov.io
161
157
uses : codecov/codecov-action@v3
162
158
with :
163
- fail_ci_if_error : false
159
+ fail_ci_if_error : false
160
+
You can’t perform that action at this time.
0 commit comments