Skip to content
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

Update ci to include code coverage after #1215 #1241

Merged
merged 30 commits into from
Jan 11, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
41b493b
aggregate code coverage
jetersen Dec 27, 2019
497351e
wording
jetersen Jan 10, 2020
af878f8
spacing
jetersen Jan 10, 2020
dd01def
Merge branch 'master' into fix/aggregateReport
jetersen Jan 10, 2020
04b70ae
remove travis
jetersen Jan 10, 2020
6d8fee6
update github action to report coverage
jetersen Jan 10, 2020
ebbb1fa
use bash shell
jetersen Jan 10, 2020
43e007b
use package to avoid caching configuration-as-code on github
jetersen Jan 10, 2020
5f9f613
skip maven deploy for report
jetersen Jan 10, 2020
dbd5dff
formatting
jetersen Jan 10, 2020
7e9226e
run coverage reporting separately
jetersen Jan 10, 2020
7845702
locate path to report
jetersen Jan 10, 2020
056f68f
-P no space
jetersen Jan 10, 2020
aba9663
say no to report aggregation
jetersen Jan 10, 2020
318aab2
Revert "remove travis" as tokenless codecov is not possible with gith…
jetersen Jan 10, 2020
bcc342c
tokenless with travis...
jetersen Jan 10, 2020
d4570fb
faster travis build
jetersen Jan 10, 2020
ff907c5
Revert "say no to report aggregation"
jetersen Jan 10, 2020
b27a469
add jacoco aggregate
jetersen Jan 10, 2020
e038a81
no thanks to codecov graph
jetersen Jan 10, 2020
827f1e7
fix missing jacoco data execution
jetersen Jan 10, 2020
4101399
avoid calling jacoco:report twice
jetersen Jan 10, 2020
4851ed2
shush codacy!
jetersen Jan 10, 2020
07f896b
fix report aggregation
jetersen Jan 11, 2020
3190440
fix report aggregation part 2
jetersen Jan 11, 2020
950f9c8
fix report aggregation part 3
jetersen Jan 11, 2020
f82cf4a
fix report aggregation part over 9000
jetersen Jan 11, 2020
cafa327
remove report
jetersen Jan 11, 2020
4372110
words
jetersen Jan 11, 2020
07cc70b
finally
jetersen Jan 11, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix report aggregation part 2
  • Loading branch information
jetersen committed Jan 11, 2020
commit 3190440a7e4adde7e20d98edb37f4cfa7c5483e7
2 changes: 0 additions & 2 deletions report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
<artifactId>report-aggregator</artifactId>
<name>Aggregate Report</name>

<packaging>pom</packaging>

<properties>
<enforcer.skip>true</enforcer.skip>
<maven.deploy.skip>true</maven.deploy.skip> <!-- no need to be deployed during release, this is a test-only module -->
Expand Down
14 changes: 14 additions & 0 deletions report/src/test/java/io/jenkins/plugins/casc/ReportTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package io.jenkins.plugins.casc;

import org.junit.Assert;
import org.junit.Test;

public class ReportTest {

@Test
public void test() {
// dummy test to ensure jacoco data execution
Assert.assertTrue(true);
}

}