-
Notifications
You must be signed in to change notification settings - Fork 745
Update ci to include code coverage after #1215 #1241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
41b493b
aggregate code coverage
jetersen 497351e
wording
jetersen af878f8
spacing
jetersen dd01def
Merge branch 'master' into fix/aggregateReport
jetersen 04b70ae
remove travis
jetersen 6d8fee6
update github action to report coverage
jetersen ebbb1fa
use bash shell
jetersen 43e007b
use package to avoid caching configuration-as-code on github
jetersen 5f9f613
skip maven deploy for report
jetersen dbd5dff
formatting
jetersen 7e9226e
run coverage reporting separately
jetersen 7845702
locate path to report
jetersen 056f68f
-P no space
jetersen aba9663
say no to report aggregation
jetersen 318aab2
Revert "remove travis" as tokenless codecov is not possible with gith…
jetersen bcc342c
tokenless with travis...
jetersen d4570fb
faster travis build
jetersen ff907c5
Revert "say no to report aggregation"
jetersen b27a469
add jacoco aggregate
jetersen e038a81
no thanks to codecov graph
jetersen 827f1e7
fix missing jacoco data execution
jetersen 4101399
avoid calling jacoco:report twice
jetersen 4851ed2
shush codacy!
jetersen 07f896b
fix report aggregation
jetersen 3190440
fix report aggregation part 2
jetersen 950f9c8
fix report aggregation part 3
jetersen f82cf4a
fix report aggregation part over 9000
jetersen cafa327
remove report
jetersen 4372110
words
jetersen 07cc70b
finally
jetersen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
|
|
||
| <parent> | ||
| <artifactId>parent</artifactId> | ||
| <groupId>io.jenkins.configuration-as-code</groupId> | ||
| <version>${revision}${changelist}</version> | ||
| </parent> | ||
|
|
||
| <artifactId>report</artifactId> | ||
| <name>Aggregate Report</name> | ||
|
|
||
| <properties> | ||
| <enforcer.skip>true</enforcer.skip> | ||
| </properties> | ||
|
|
||
| <dependencies> | ||
| <dependency> | ||
| <groupId>io.jenkins</groupId> | ||
| <artifactId>configuration-as-code</artifactId> | ||
| <version>${project.version}</version> | ||
| <scope>compile</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>io.jenkins.configuration-as-code</groupId> | ||
| <artifactId>integrations</artifactId> | ||
| <version>${project.version}</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>io.jenkins.configuration-as-code</groupId> | ||
| <artifactId>test-harness</artifactId> | ||
| <version>${project.version}</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| </dependencies> | ||
|
|
||
| <build> | ||
| <plugins> | ||
| <plugin> | ||
| <groupId>org.jacoco</groupId> | ||
| <artifactId>jacoco-maven-plugin</artifactId> | ||
| <executions> | ||
| <execution> | ||
| <id>report-aggregate</id> | ||
| <phase>verify</phase> | ||
| <goals> | ||
| <goal>report-aggregate</goal> | ||
| </goals> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
|
|
||
jetersen marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| </project> | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.