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:
220220 uses : ./.github/actions/buildnative
221221
222222 - name : Install Android SDKs
223+ id : installandroidsdks
224+ continue-on-error : true
223225 if : runner.os == 'macOS'
224226 run : |
225227 dotnet build src/Sentry/Sentry.csproj -t:InstallAndroidDependencies -f:net8.0-android34.0 -p:AcceptAndroidSDKLicenses=True -p:AndroidSdkPath="/usr/local/lib/android/sdk/"
226228
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+
227234 - name : Publish Test app (macOS)
228235 run : dotnet publish test/Sentry.TrimTest/Sentry.TrimTest.csproj -c Release -r osx-arm64
229236
You can’t perform that action at this time.
0 commit comments