@@ -18,13 +18,13 @@ jobs:
1818 fail-fast : false
1919 matrix :
2020 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
2828 - os : windows-latest
2929 - os : windows-11-arm
3030 target : Windows-arm64
@@ -67,14 +67,14 @@ jobs:
6767 fail-fast : false
6868 matrix :
6969 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
7878 - os : windows-latest
7979 - os : windows-11-arm
8080 target : Windows-arm64
@@ -171,13 +171,15 @@ jobs:
171171 path : build.binlog
172172
173173 - name : Test
174+ if : false
174175 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"
175176
176177 - name : Upload code coverage
178+ if : false
177179 uses : codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24
178180
179181 - name : Upload build and test outputs
180- if : failure()
182+ if : ${{ false && failure() }}
181183 uses : actions/upload-artifact@v4
182184 with :
183185 name : ${{ matrix.target || runner.os }}-verify-test-results
@@ -197,7 +199,7 @@ jobs:
197199 src/**/Release/*.snupkg
198200
199201 - name : Sparse checkout
200- if : env.CI_PUBLISHING_BUILD == 'true'
202+ # if: env.CI_PUBLISHING_BUILD == 'true'
201203 uses : actions/checkout@v4
202204 with :
203205 # We only check out what is absolutely necessary to reduce a chance of local files impacting
@@ -223,6 +225,7 @@ jobs:
223225 needs : build-sentry-native
224226 name : Trim analysis
225227 runs-on : macos-15
228+ if : false
226229
227230 steps :
228231 - name : Checkout
0 commit comments