forked from hyperledger-iroha/iroha-dco
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Selected branches coverage (hyperledger-iroha#1122)
* run coverage for selected branches only Signed-off-by: Artyom Bakhtin <[email protected]> * branches to cover as a separate script Signed-off-by: Artyom Bakhtin <[email protected]>
- Loading branch information
Showing
2 changed files
with
28 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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,13 @@ | ||
#!/usr/bin/env groovy | ||
|
||
def selectedBranchesCoverage(branches, PRCoverage=true) { | ||
// trigger coverage if branch is either develop or master, or it is a PR | ||
if (PRCoverage) { | ||
return env.BRANCH_NAME in branches || env.CHANGE_ID != null | ||
} | ||
else { | ||
return env.BRANCH_NAME in branches | ||
} | ||
} | ||
|
||
return this |
This file contains 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