@@ -18,13 +18,13 @@ jobs:
18
18
fail-fast : false
19
19
matrix :
20
20
include :
21
- - os : ubuntu-22.04 # Pin ubuntu to ensure mono is installed
22
- - os : ubuntu-22.04-arm
23
- target : Linux-arm64
24
- - os : ubuntu-latest
25
- target : Linux-musl
26
- container : ghcr.io/getsentry/sentry-dotnet-alpine:3.21
27
- - os : macos-15 # Pin macos to get the version of Xcode that we need: https://github.com/actions/runner-images/issues/10703
21
+ # - os: ubuntu-22.04 # Pin ubuntu to ensure mono is installed
22
+ # - os: ubuntu-22.04-arm
23
+ # target: Linux-arm64
24
+ # - os: ubuntu-latest
25
+ # target: Linux-musl
26
+ # container: ghcr.io/getsentry/sentry-dotnet-alpine:3.21
27
+ # - os: macos-15 # Pin macos to get the version of Xcode that we need: https://github.com/actions/runner-images/issues/10703
28
28
- os : windows-latest
29
29
- os : windows-11-arm
30
30
target : Windows-arm64
@@ -67,14 +67,14 @@ jobs:
67
67
fail-fast : false
68
68
matrix :
69
69
include :
70
- - os : ubuntu-22.04 # Pin ubuntu to ensure mono is installed
71
- target : Linux
72
- - os : ubuntu-22.04-arm
73
- target : Linux-arm64
74
- - os : ubuntu-latest
75
- target : Linux-musl
76
- container : ghcr.io/getsentry/sentry-dotnet-alpine:3.21
77
- - os : macos-15 # Pin macos to get the version of Xcode that we need: https://github.com/actions/runner-images/issues/10703
70
+ # - os: ubuntu-22.04 # Pin ubuntu to ensure mono is installed
71
+ # target: Linux
72
+ # - os: ubuntu-22.04-arm
73
+ # target: Linux-arm64
74
+ # - os: ubuntu-latest
75
+ # target: Linux-musl
76
+ # container: ghcr.io/getsentry/sentry-dotnet-alpine:3.21
77
+ # - os: macos-15 # Pin macos to get the version of Xcode that we need: https://github.com/actions/runner-images/issues/10703
78
78
- os : windows-latest
79
79
- os : windows-11-arm
80
80
target : Windows-arm64
@@ -171,13 +171,15 @@ jobs:
171
171
path : build.binlog
172
172
173
173
- name : Test
174
+ if : false
174
175
run : dotnet test Sentry-CI-Build-${{ matrix.target || runner.os }}.slnf -c Release --no-build --nologo -l GitHubActions -l "trx;LogFilePrefix=testresults_${{ runner.os }}" --collect "XPlat Code Coverage"
175
176
176
177
- name : Upload code coverage
178
+ if : false
177
179
uses : codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24
178
180
179
181
- name : Upload build and test outputs
180
- if : failure()
182
+ if : ${{ false && failure() }}
181
183
uses : actions/upload-artifact@v4
182
184
with :
183
185
name : ${{ matrix.target || runner.os }}-verify-test-results
@@ -197,7 +199,7 @@ jobs:
197
199
src/**/Release/*.snupkg
198
200
199
201
- name : Sparse checkout
200
- if : env.CI_PUBLISHING_BUILD == 'true'
202
+ # if: env.CI_PUBLISHING_BUILD == 'true'
201
203
uses : actions/checkout@v4
202
204
with :
203
205
# We only check out what is absolutely necessary to reduce a chance of local files impacting
@@ -223,6 +225,7 @@ jobs:
223
225
needs : build-sentry-native
224
226
name : Trim analysis
225
227
runs-on : macos-15
228
+ if : false
226
229
227
230
steps :
228
231
- name : Checkout
0 commit comments