Skip to content

Commit

Permalink
Fix: JaCoCo exclude patterns format
Browse files Browse the repository at this point in the history
The commit ef697e7 with the multiline format is incorrect
since this is a comma separated list.

Change-Id: Ifa9e7091338d52f197663f2c3d593b8ce9675d2b
Signed-off-by: Anil Belur <[email protected]>
  • Loading branch information
askb committed Feb 27, 2024
1 parent ef697e7 commit 34e4a8b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions jjb/integration/distribution/distribution-templates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@
name: "distribution-verify-{type}-{stream}"

disable-job: "false"
jacoco-exclude-pattern: >
**/gen/**
**/generated-sources/**
**/yang-gen**
jacoco-exclude-pattern: >-
**/gen/**,
**/generated-sources/**,
**/yang-gen**,
**/pax/**
project-type: freestyle
Expand Down Expand Up @@ -214,10 +214,10 @@
# https://issues.apache.org/jira/browse/MNG-5666

disable-job: false
jacoco-exclude-pattern: >
**/gen/**
**/generated-sources/**
**/yang-gen**
jacoco-exclude-pattern: >-
**/gen/**,
**/generated-sources/**,
**/yang-gen**,
**/pax/**
project-type: maven
Expand Down
16 changes: 8 additions & 8 deletions jjb/releng-templates-java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@
**/target/surefire-reports/*-output.txt
mvn-goals: clean install
disable-job: false
jacoco-exclude-pattern: >
**/gen/**
**/generated-sources/**
**/yang-gen**
jacoco-exclude-pattern: >-
**/gen/**,
**/generated-sources/**,
**/yang-gen**,
**/pax/**
#####################
Expand Down Expand Up @@ -172,10 +172,10 @@
# Default parameters #
######################
disable-job: "false"
jacoco-exclude-pattern: >
**/gen/**
**/generated-sources/**
**/yang-gen**
jacoco-exclude-pattern: >-
**/gen/**,
**/generated-sources/**,
**/yang-gen**,
**/pax/**
archive-artifacts: >
Expand Down

0 comments on commit 34e4a8b

Please sign in to comment.