File tree Expand file tree Collapse file tree 2 files changed +43
-1
lines changed Expand file tree Collapse file tree 2 files changed +43
-1
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,18 @@ jobs: #Build and stage projects
94
94
95
95
steps :
96
96
- template : template-test-on-linux.yaml
97
-
97
+
98
+ - job : ' BuilMacConsoleAppWithBroker'
99
+ pool :
100
+ vmImage : macOS-14
101
+
102
+ variables :
103
+ runCodesignValidationInjection : false
104
+ Codeql.SkipTaskAutoInjection : true
105
+
106
+ steps :
107
+ - template : template-build-on-mac.yaml
108
+
98
109
- job : ' RunManagedIdentityE2ETestsOnAzureArc'
99
110
displayName : ' Managed Identity E2E Tests – Azure ARC Agent'
100
111
dependsOn : ['BuildAndStageProjects']
Original file line number Diff line number Diff line change
1
+ # template-build-on-mac.yaml
2
+ # Build tests\devapps\MacConsoleAppWithBroker\MacConsoleAppWithBroker.csproj on macOS
3
+
4
+ parameters :
5
+ BuildConfiguration : ' Release'
6
+
7
+ steps :
8
+
9
+ - task : NuGetToolInstaller@0
10
+ displayName : ' Use latest NuGet'
11
+ inputs :
12
+ versionSpec : 6.x
13
+
14
+ - task : UseDotNet@2
15
+ displayName : ' Use the latest .NET 8'
16
+ inputs :
17
+ version : 8.x
18
+
19
+ - task : DotNetCoreCLI@2
20
+ displayName : ' Restore mac console app with broker'
21
+ inputs :
22
+ command : ' custom'
23
+ custom : ' workload'
24
+ arguments : ' restore ./tests/devapps/MacConsoleAppWithBroker/MacConsoleAppWithBroker.csproj'
25
+
26
+ - task : DotNetCoreCLI@2
27
+ displayName : ' Build mac console app with broker'
28
+ inputs :
29
+ command : ' build'
30
+ projects : |
31
+ ./tests/devapps/MacConsoleAppWithBroker/MacConsoleAppWithBroker.csproj
You can’t perform that action at this time.
0 commit comments