We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 270337f commit 107d432Copy full SHA for 107d432
.artifactignore
@@ -1,6 +1,7 @@
1
**/*
2
!build/*.deb
3
-!build/**/*.tar.bz2
+!build/*.tar.bz2
4
!build/*.dmg
5
!build/*.7z
6
!build/*.so
7
+!build/install/**
ci/azure_build_steps.yml
@@ -30,8 +30,11 @@ steps:
30
- bash: build/testing/UnitTests --gtest_shuffle --gtest_output=xml:test_$(Agent.JobName).xml || true
31
displayName: 'Run unit tests'
32
timeoutInMinutes: 5
33
+ continueOnError: true
34
- task: PublishTestResults@2
35
inputs:
36
testResultsFormat: 'JUnit'
37
testResultsFiles: 'test_*.xml'
- failTaskOnFailedTests: true
38
+ failTaskOnFailedTests: false
39
+- publish: $(System.DefaultWorkingDirectory)
40
+ artifact: '$(Agent.JobName)_artifacts'
0 commit comments