Skip to content

Commit 0851671

Browse files
Merge pull request #462 from nventive/dev/jpl/test-job-attempt
fix: Append job attempt number to test artifact names.
2 parents 2109f17 + 56f4cc7 commit 0851671

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Prefix your items with `(Template)` if the change is about the template and not
1010
- Removed all references to Uno.SourceGenerationTasks packages and adjusted the dependency injection recipe in ViewModels accordingly.
1111
- Fix Android bottom screen space.
1212
- Fix yaml configuration for tests to always publish test results.
13+
- Append job attempt number for test artifact names in build stage to allow retrying jobs.
1314

1415
## 3.10.X
1516
- Added Dependency Injection validation in the development environment.

build/stage-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
pool:
8888
vmImage : $(windowsHostedAgentImage)
8989
variables:
90-
ArtifactName: $(TestsArtifactName)_${{ parameters.applicationEnvironment }}
90+
ArtifactName: $(TestsArtifactName)_${{ parameters.applicationEnvironment }}_Attempt$(System.JobAttempt)
9191
ApplicationEnvironment: ${{ parameters.applicationEnvironment }}
9292
steps:
9393
- template: steps-build-tests.yml

0 commit comments

Comments
 (0)