File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -220,10 +220,17 @@ jobs:
220
220
uses : ./.github/actions/buildnative
221
221
222
222
- name : Install Android SDKs
223
+ id : installandroidsdks
224
+ continue-on-error : true
223
225
if : runner.os == 'macOS'
224
226
run : |
225
227
dotnet build src/Sentry/Sentry.csproj -t:InstallAndroidDependencies -f:net8.0-android34.0 -p:AcceptAndroidSDKLicenses=True -p:AndroidSdkPath="/usr/local/lib/android/sdk/"
226
228
229
+ - name : Install Android SDKs (retry)
230
+ if : steps.installandroidsdks.outcome=='failure' && runner.os == 'macOS'
231
+ run : |
232
+ dotnet build src/Sentry/Sentry.csproj -t:InstallAndroidDependencies -f:net8.0-android34.0 -p:AcceptAndroidSDKLicenses=True -p:AndroidSdkPath="/usr/local/lib/android/sdk/"
233
+
227
234
- name : Publish Test app (macOS)
228
235
run : dotnet publish test/Sentry.TrimTest/Sentry.TrimTest.csproj -c Release -r osx-arm64
229
236
You can’t perform that action at this time.
0 commit comments