Skip to content

Commit

Permalink
Merge pull request #35 from Laerdal/ksidirop/MAN-225-fw-install-file-…
Browse files Browse the repository at this point in the history
…upload-retry-enhancement

MAN-225 fw install file upload retry enhancement
  • Loading branch information
ksidirop-laerdal authored Aug 28, 2023
2 parents 5cacb67 + 80417bc commit 2436e48
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
11 changes: 9 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -361,14 +361,16 @@ Laerdal.McuMgr.Source/Android_Maven
**/iOS/Frameworks/**
**/iOS/ObjcBinding/**


# Carthage
Carthage

# Cartfile
# Cartfile.resolved

Package.resolved

# Misc

.DS_Store
.build
.swiftpm
Expand All @@ -393,4 +395,9 @@ Package.resolved
**/.gradle/**
local.properties

version.txt
version.txt

# Test results

*.Tests.xml
*.Tests.htm*
2 changes: 1 addition & 1 deletion Laerdal.McuMgr.Tests/Laerdal.McuMgr.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
<TestAssemblies Include="**\$(OutputPath)\*.Tests.dll" />
</ItemGroup>

<Exec Command=" $(XunitConsole48Path) @(TestAssemblies) " />
<Exec Command=" $(XunitConsole48Path) @(TestAssemblies) -xml &quot;$(AssemblyName).xml&quot; -html &quot;$(AssemblyName).html&quot; " />
</Target>

<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
11 changes: 9 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
displayName: NuGet Sources Add
inputs:
command: custom
arguments: sources Add -Name LocalNugets -Source "$(Build.ArtifactStagingDirectory)/Artifacts"
arguments: sources Add -Name LocalNugets -Source "$(Build.ArtifactStagingDirectory)/Artifacts"

- task: MSBuild@1
displayName: MSBuild
Expand All @@ -159,7 +159,14 @@ jobs:
inputs:
targetType: inline
script: ls -l "$(Build.ArtifactStagingDirectory)/Artifacts/"


# Publish test results to Azure Pipelines
- task: PublishTestResults@2
inputs:
searchFolder: '$(System.DefaultWorkingDirectory)'
testResultsFiles: 'Laerdal.McuMgr.Tests/Laerdal.McuMgr.Tests.xml'
testResultsFormat: 'XUnit'

# bare in mind that this task doesnt support wildcards
- task: PublishBuildArtifacts@1
inputs:
Expand Down

0 comments on commit 2436e48

Please sign in to comment.