You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 17, 2019. It is now read-only.
string(defaultValue: '4', description: 'How much parallelism should we exploit. "4" is optimal for machines with modest amount of memory and at least 4 cores', name: 'PARALLELISM')])])
21
22
22
23
@@ -34,6 +35,7 @@ pipeline {
34
35
IROHA_POSTGRES_USER="pguser${GIT_COMMIT}"
35
36
IROHA_POSTGRES_PASSWORD="${GIT_COMMIT}"
36
37
IROHA_POSTGRES_PORT=5432
38
+
CHANGE_BRANCH_LOCAL=''
37
39
}
38
40
39
41
options {
@@ -47,7 +49,13 @@ pipeline {
47
49
agent { label 'master' }
48
50
steps {
49
51
script {
50
-
if (GIT_LOCAL_BRANCH!="develop") {
52
+
// need this for develop->master PR cases
53
+
// CHANGE_BRANCH is not defined if this is a branch build
54
+
try {
55
+
CHANGE_BRANCH_LOCAL= env.CHANGE_BRANCH
56
+
}
57
+
catch(MissingPropertyException e) { }
58
+
if (GIT_LOCAL_BRANCH!="develop"&&CHANGE_BRANCH_LOCAL!="develop") {
Blockchain platform Hyperledger Iroha is designed for simple creation and management of assets. This is a distributed ledger of transactions.
@@ -25,7 +24,7 @@ Among the non-functional requirements can be noted a high degree of network faul
25
24
26
25
## Documentation
27
26
28
-
Our documentation is hosted at ReadTheDocs service here: [http://iroha.readthedocs.io](http://iroha.readthedocs.io/en/).
27
+
Our documentation is hosted at ReadTheDocs service here: [http://iroha.readthedocs.io](http://iroha.readthedocs.io).
29
28
We have documentation in several languages available and you are welcome to contribute on [POEditor website](https://poeditor.com/join/project/SFpZw7o33o)!
30
29
31
30
### How to explore Iroha really fast?
@@ -42,7 +41,7 @@ Yes, in [Java](http://iroha.readthedocs.io/en/latest/guides/libraries/java.html)
42
41
43
42
### Are there any example applications?
44
43
45
-
[Android point app](https://github.com/soramitsu/iroha-demo-android) and [JavaScript wallet](https://github.com/soramitsu/iroha-wallet-js).
44
+
[Android point app](https://github.com/hyperledger/iroha-android/tree/master/iroha-android-sample) and [JavaScript wallet](https://github.com/soramitsu/iroha-wallet-js).
0 commit comments