This repository has been archived by the owner on Oct 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Setup Azure DevOps for CI * Install Android NDK Bundle on Windows build agents * Workaround for `JAVA_HOME` on Windows build agents * Support for Android NDK r19 and r20 * Updated Cake scripts to support VS 2019 on Windows * Pin NuGet download URL to v4.7.3 * Bump to xamarin/xamarin-android-tools/master@294f447 * Changes: dotnet/android-tools@4c00c22...294f447 * Fix for `mono-support.h` on Windows Fixes: c:\program files (x86)\mono\include\mono-2.0\mono\utils\mono-publib.h(94): error C2371: 'mono_unichar2': redefinition; different basic types [D:\a\1\s\tests\common\mk\common.Tests.vcxproj]
- Loading branch information
1 parent
c0f68d0
commit 9cd5d13
Showing
10 changed files
with
156 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# https://aka.ms/yaml | ||
|
||
name: $(BuildID) | ||
|
||
trigger: | ||
- master | ||
|
||
variables: | ||
Mono.Windows.Url: https://download.mono-project.com/archive/6.0.0/windows-installer/mono-6.0.0.319-gtksharp-2.12.45-win32-0.msi | ||
SdkManager.Windows: 'C:\Program Files (x86)\Android\android-sdk\tools\bin\sdkmanager' | ||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | ||
|
||
jobs: | ||
|
||
- job: windows | ||
pool: | ||
name: Hosted VS2017 | ||
demands: msbuild | ||
steps: | ||
- powershell: | | ||
echo y | & "$(SdkManager.Windows)" ndk-bundle | ||
displayName: install Android NDK | ||
- powershell: | | ||
Invoke-WebRequest $(Mono.Windows.Url) -OutFile mono.msi -Verbose | ||
Start-Process msiexec -Wait -ArgumentList '/i mono.msi /quiet /l*v mono.log' | ||
Get-Content mono.log | ||
displayName: install mono | ||
- powershell: | | ||
.\build.ps1 -t Jenkins -v diagnostic | ||
displayName: build and test | ||
- job: mac | ||
pool: | ||
name: Hosted macOS | ||
demands: msbuild | ||
steps: | ||
- bash: | | ||
source build/SetupCI.sh | ||
displayName: setup ci | ||
- bash: | | ||
./build.sh -t Travis -v diagnostic | ||
displayName: build and test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule Xamarin.Android.Tools
updated
from 4c00c2 to 294f44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters