Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions .ci/build-manifest.cake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#addin nuget:?package=Cake.XCode&version=4.2.0
#addin nuget:?package=Cake.XCode&version=5.0.0
#addin nuget:?package=Cake.Yaml&version=3.1.0&loadDependencies=true
#addin nuget:?package=Cake.Json&version=4.0.0&loadDependencies=true
#addin nuget:?package=Xamarin.Nuget.Validator&version=1.1.1
Expand Down Expand Up @@ -418,14 +418,6 @@ public class BuildGroup {
public override string ToString () => Name;
}

bool IsRunningOnMacOs () {
return System.Environment.OSVersion.Platform == PlatformID.MacOSX || MacPlatformDetector.IsMac.Value;
}

bool IsRunningOnLinux () {
return IsRunningOnUnix () && !IsRunningOnMacOs ();
}

internal static class MacPlatformDetector {
internal static readonly Lazy<bool> IsMac = new Lazy<bool> (IsRunningOnMac);

Expand Down
6 changes: 3 additions & 3 deletions .ci/build.steps.v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ parameters:
windowsImage: 'windows-latest' # the name of the Windows VM image
windowsImageOverride: '' # used to access 1ES hardened images: name of ImageOverride demand to use such as AzurePipelinesWindows2022compliant when windowsAgentPoolName set to the AzurePipelines-EO pool
mono: 'Latest' # the version of mono to use
xcode: '13.3.1' # the version of Xcode to use
xcode: '13.2.1' # the version of Xcode to use
dotnet: '6.0.300' # the version of .NET Core to use
dotnetStable: '6.0.300' # the stable version of .NET Core to use
cake: '2.2.0' # the version of Cake to use
Expand Down Expand Up @@ -231,7 +231,7 @@ steps:
--gitcommit="$(Build.SourceVersion)" `
--gitbranch="$(Build.SourceBranch)" `
--forcebuild="$force" `
--names="$names" `
--names "$names" `
--targets="$targets" `
--copyoutputtoroot=true `
--configuration="${{ parameters.configuration }}" `
Expand Down Expand Up @@ -260,7 +260,7 @@ steps:
--gitcommit="$(Build.SourceVersion)" `
--gitbranch="$(Build.SourceBranch)" `
--forcebuild="$force" `
--names="$names" `
--names "$names" `
--targets="$targets" `
--copyoutputtoroot=true `
--configuration="${{ parameters.configuration }}" `
Expand Down
2 changes: 1 addition & 1 deletion .ci/build.v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ parameters:
windowsImage: 'windows-latest' # the name of the Windows VM image
windowsImageOverride: '' # used to access 1ES hardened images: name of ImageOverride demand to use such as AzurePipelinesWindows2022compliant when windowsAgentPoolName set to the AzurePipelines-EO pool
mono: 'Latest' # the version of mono to use
xcode: '13.3.1' # the version of Xcode to use
xcode: '13.2.1' # the version of Xcode to use
dotnet: '6.0.300' # the version of .NET Core to use
dotnetStable: '6.0.300' # the stable version of .NET Core to use
cake: '2.2.0' # the version of Cake to use
Expand Down
6 changes: 3 additions & 3 deletions .ci/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ parameters:
# macOS-11 required for XCode 13.1
windowsImage: 'windows-latest' # the name of the Windows VM image
mono: 'Latest' # the version of mono to use
xcode: '13.3.1' # the version of Xcode to use
xcode: '13.2.1' # the version of Xcode to use
dotnet: '6.0.300' # the version of .NET Core to use
dotnetStable: '6.0.300' # the stable version of .NET Core to use
cake: '2.2.0' # the version of Cake to use
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
--gitcommit="$(Build.SourceVersion)" `
--gitbranch="$(Build.SourceBranch)" `
--forcebuild="$force" `
--names="$names" `
--names "$names" `
--targets="$targets" `
--copyoutputtoroot=true `
--configuration="${{ parameters.configuration }}" `
Expand Down Expand Up @@ -286,7 +286,7 @@ jobs:
--gitcommit="$(Build.SourceVersion)" `
--gitbranch="$(Build.SourceBranch)" `
--forcebuild="$force" `
--names="$names" `
--names "$names" `
--targets="$targets" `
--copyoutputtoroot=true `
--configuration="${{ parameters.configuration }}" `
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
windowsImage: ''
windowsImageOverride: AzurePipelinesWindows2019compliant

xcode: 13.3.1
xcode: 13.2.1
buildType: 'manifest'

linuxAgentPoolName: AzurePipelines-EO
Expand Down