Skip to content
Merged
Changes from 4 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
6 changes: 4 additions & 2 deletions host/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ stages:
displayName: "Copy needed files"
inputs:
SourceFolder: "$(Build.ArtifactStagingDirectory)/output/linux"
# Publish output will include many other files. We only need the FunctionsNetHost & libnethost.so
# Publish output will include many other files. We only need the FunctionsNetHost, FunctionsNetHost.dbg & libnethost.so
Contents: |
FunctionsNetHost
FunctionsNetHost.dbg
libnethost.so
TargetFolder: "$(Build.ArtifactStagingDirectory)/output/linux_filtered"

Expand Down Expand Up @@ -80,9 +81,10 @@ stages:
displayName: "Copy needed files"
inputs:
SourceFolder: "$(Build.ArtifactStagingDirectory)/output/windows"
# Publish output will include many other files. We only need FunctionsNetHost.exe & nethost.dll
# Publish output will include many other files. We only need FunctionsNetHost.exe, pdb & nethost.dll
Contents: |
FunctionsNetHost.exe
FunctionsNetHost.pdb
nethost.dll
TargetFolder: "$(Build.ArtifactStagingDirectory)/output/windows_filtered"

Expand Down