File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
eng/ci/templates/official/jobs Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 26
26
agentId : ${{ parameters.functionAppName }}${{ parameters.os }}
27
27
functionApp : ${{ parameters.functionAppName }}
28
28
functionAppOutputPath : $(Build.ArtifactStagingDirectory)/FunctionApps/$(functionApp)
29
-
29
+ ${{ if eq(parameters.os, 'Linux') }} :
30
+ publishRid : linux-x64
31
+ ${{ if eq(parameters.os, 'Windows') }} :
32
+ publishRid : win-x64
30
33
steps :
31
34
32
35
- template : /eng/ci/templates/install-dotnet.yml@self
58
61
zipAfterPublish : false
59
62
modifyOutputPath : false
60
63
projects : ' $(Build.ArtifactStagingDirectory)/PerformanceTestApps/$(functionApp)/HelloHttp.csproj'
61
- arguments : -c Release -o $(functionAppOutputPath) -f net9.0
64
+ arguments : -c Release -o $(functionAppOutputPath) -f net9.0 -r $(publishRid)
62
65
workingDirectory : $(Build.ArtifactStagingDirectory)/PerformanceTestApps/$(functionApp)
63
66
64
67
- ${{ if eq(parameters.os, 'Windows') }} :
You can’t perform that action at this time.
0 commit comments