Skip to content

Commit

Permalink
Merge branch 'multiplex-rebase' of github.com:kdenhartog/indy-sdk int…
Browse files Browse the repository at this point in the history
…o multiplex-rebase
  • Loading branch information
kdenhartog committed Jan 11, 2019
2 parents 2e87b34 + 1ea1282 commit cc5c4fd
Show file tree
Hide file tree
Showing 30 changed files with 185 additions and 101 deletions.
5 changes: 2 additions & 3 deletions Jenkinsfile.cd
Original file line number Diff line number Diff line change
Expand Up @@ -481,14 +481,13 @@ def linuxVcxJavaTesting(env_name, network_name, testEnv, stashBuildResults) {
def linuxVcxPythonTesting(env_name, network_name, testEnv, stashBuildResults) {
unstash name: "VcxPythonLibvcxSO${env_name}"
unstash name: "VcxPythonLibindyAndLibnullpaySO${env_name}"

dir('vcx/wrappers/python3') {


testEnv.inside {
echo "${env_name} Vcx Test: Test python wrapper"

sh '''
python3.5 -m pip install --user pytest==3.4.2 qrcode pytest-asyncio
python3.5 -m pip install --user pytest==3.6.4 pytest-asyncio
LD_LIBRARY_PATH=./:${LD_LIBRARY_PATH} python3.5 -m pytest -s
'''
}
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ def linuxVcxPythonTesting(env_name, network_name, testEnv) {
echo "${env_name} Vcx Test: Test python wrapper"

sh '''
python3.5 -m pip install --user pytest==3.4.2 qrcode pytest-asyncio
python3.5 -m pip install --user pytest==3.6.4 pytest-asyncio
LD_LIBRARY_PATH=./:${LD_LIBRARY_PATH} python3.5 -m pytest -s
'''
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rewritten but still contains some useful ideas.

The major artifact of the SDK is a C-callable library that provides the basic building blocks for
the creation of applications on the top of [Hyperledger Indy](https://www.hyperledger.org/projects/hyperledger-indy).
It is available for most popular desktop, mobile and server platfrorms.
It is available for most popular desktop, mobile and server platforms.

### Libindy wrappers

Expand Down
2 changes: 1 addition & 1 deletion cli/src/commands/ledger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ pub mod schema_command {
command!(CommandMetadata::build("schema", "Send Schema transaction to the Ledger.")
.add_required_param("name", "Schema name")
.add_required_param("version", "Schema version")
.add_required_param("attr_names", "Schema attributes split by comma")
.add_required_param("attr_names", "Schema attributes split by comma (the number of attributes should be less or equal than 125)")
.add_optional_param("fees_inputs","The list of source inputs")
.add_optional_param("fees_outputs","The list of outputs in the following format: (recipient, amount)")
.add_optional_param("extra","Optional information for fees payment operation")
Expand Down
2 changes: 1 addition & 1 deletion doc/rhel-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dnf install -y \
For Amazon Linux 2017.03 or other distributions without `libsodium` available in system repositories:
```
cd /tmp
curl https://download.libsodium.org/libsodium/releases/libsodium-1.0.14.tar.gz | tar -xz
curl https://download.libsodium.org/libsodium/releases/old/libsodium-1.0.14.tar.gz | tar -xz
cd /tmp/libsodium-1.0.14
./configure
make
Expand Down
2 changes: 1 addition & 1 deletion doc/ubuntu-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
Because of this, it requires to build and install `libsodium` from source:
```
cd /tmp && \
curl https://download.libsodium.org/libsodium/releases/libsodium-1.0.14.tar.gz | tar -xz && \
curl https://download.libsodium.org/libsodium/releases/old/libsodium-1.0.14.tar.gz | tar -xz && \
cd /tmp/libsodium-1.0.14 && \
./configure --disable-shared && \
make && \
Expand Down
2 changes: 1 addition & 1 deletion doc/windows-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ git clone https://github.com/hyperledger/indy-sdk.git
### Binary deps

- https://www.npcglib.org/~stathis/downloads/openssl-1.0.2k-vs2017.7z
- https://download.libsodium.org/libsodium/releases/libsodium-1.0.14-msvc.zip
- https://download.libsodium.org/libsodium/releases/old/libsodium-1.0.14-msvc.zip

### Source deps

Expand Down
Loading

0 comments on commit cc5c4fd

Please sign in to comment.