Skip to content

Commit

Permalink
Add 1.4.8 binding
Browse files Browse the repository at this point in the history
  • Loading branch information
nklincoln committed Jun 11, 2020
1 parent c9de977 commit 34d1bee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion packages/caliper-cli/lib/lib/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,10 @@ sut:
packages: ['[email protected]', '[email protected]', '[email protected]']
1.4.6:
packages: ['[email protected]', '[email protected]', '[email protected]']
1.4.7: &fabric-latest
1.4.7:
packages: ['[email protected]', '[email protected]', '[email protected]']
1.4.8: &fabric-latest
packages: ['[email protected]', '[email protected]', '[email protected]']
2.1.0: &fabric-latest-v2
packages: ['[email protected]', '[email protected]', '[email protected]', '[email protected]']
latest: *fabric-latest
Expand Down
6 changes: 3 additions & 3 deletions packages/caliper-tests-integration/fabric_tests/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ cd ${DIR}
# bind during CI tests, using the package dir as CWD
# Note: do not use env variables for binding settings, as subsequent launch calls will pick them up and bind again
if [[ "${BIND_IN_PACKAGE_DIR}" = "true" ]]; then
${CALL_METHOD} bind --caliper-bind-sut fabric:1.4.7 --caliper-bind-cwd ./../../caliper-fabric/ --caliper-bind-args="--save-dev"
${CALL_METHOD} bind --caliper-bind-sut fabric:1.4.8 --caliper-bind-cwd ./../../caliper-fabric/ --caliper-bind-args="--save-dev"
fi

# change default settings (add config paths too)
Expand Down Expand Up @@ -95,10 +95,10 @@ if [[ ${rc} != 0 ]]; then
exit ${rc};
fi

# UNBIND 1.4.7 SDK, using the package dir as CWD
# UNBIND SDK, using the package dir as CWD
# Note: do not use env variables for unbinding settings, as subsequent launch calls will pick them up and bind again
if [[ "${BIND_IN_PACKAGE_DIR}" = "true" ]]; then
${CALL_METHOD} unbind --caliper-bind-sut fabric:1.4.7 --caliper-bind-cwd ./../../caliper-fabric/ --caliper-bind-args="--save-dev" --caliper-projectconfig ./caliper.yaml
${CALL_METHOD} unbind --caliper-bind-sut fabric:1.4.8 --caliper-bind-cwd ./../../caliper-fabric/ --caliper-bind-args="--save-dev" --caliper-projectconfig ./caliper.yaml
fi
# BIND with 2.1.0 SDK, using the package dir as CWD
# Note: do not use env variables for unbinding settings, as subsequent launch calls will pick them up and bind again
Expand Down

0 comments on commit 34d1bee

Please sign in to comment.