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 9f50775 commit 315adc8Copy full SHA for 315adc8
.mvn/gradle-enterprise.xml
@@ -8,7 +8,12 @@
8
mvn gradle-enterprise:provision-access-key
9
https://docs.gradle.com/enterprise/maven-extension/#publishing_based_on_criteria
10
-->
11
- <publish>ALWAYS</publish>
+ <!-- only publish test runs when failure (no option to completely avoid it)-->
12
+ <publish>#{basedir.contains('test-classes') ? 'ON_FAILURE' : 'ALWAYS'}</publish>
13
+ <!-- tag which builds are tests vs real -->
14
+ <tags>
15
+ <tag>#{basedir.contains('test-classes') ? 'TEST-BUILD' : 'MAIN-BUILD'}</tag>
16
+ </tags>
17
<obfuscation>
18
<!-- Don't share ip addresses-->
19
<ipAddresses>#{{'0.0.0.0'}}</ipAddresses>
0 commit comments