This repository has been archived by the owner on Apr 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1941 from hyperledger/dev
Hyperledger Iroha v1.0 Release Candidate 1
- Loading branch information
Showing
976 changed files
with
41,256 additions
and
21,774 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,3 @@ | ||
[submodule "deploy/ansible/kubespray"] | ||
path = deploy/ansible/kubespray | ||
url = https://github.com/soramitsu/kubespray.git |
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
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
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
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
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
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,14 @@ | ||
#!/usr/env/python | ||
import xml.etree.ElementTree as ET | ||
import argparse | ||
|
||
parser = argparse.ArgumentParser(description='Tag test names in a JUnit report') | ||
for arg in ['tag', 'xml_report_file']: | ||
parser.add_argument(arg) | ||
args = parser.parse_args() | ||
|
||
tree = ET.parse(args.xml_report_file) | ||
root = tree.getroot() | ||
for i in root.findall(".//Test/Name"): | ||
i.text = "%s | %s" % (args.tag, i.text) | ||
tree.write(args.xml_report_file) |
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
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
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 |
---|---|---|
@@ -1,13 +1,7 @@ | ||
#!/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.GIT_LOCAL_BRANCH in branches || env.CHANGE_ID != null | ||
} | ||
else { | ||
return env.GIT_LOCAL_BRANCH in branches | ||
} | ||
def selectedBranchesCoverage(branches) { | ||
return env.GIT_LOCAL_BRANCH in branches | ||
} | ||
|
||
return this | ||
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
Oops, something went wrong.