mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-25 02:55:09 +00:00
This reverts commit b66271af0d505bce7ce339bdfa1f1dee86774581. Signed-off-by: Brett Logan <brett.t.logan@ibm.com>
13 lines
488 B
YAML
13 lines
488 B
YAML
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
steps:
|
|
- script: |
|
|
./network.sh up createChannel -s couchdb -i ${FABRIC_VERSION} # FABRIC_VERSION is set in ci/azure-pipelines.yml
|
|
./network.sh deployCC -ccn basic -ccv 1 -ccl javascript -cci initLedger
|
|
./network.sh deployCC -ccn basic -ccv 2 -ccl golang -cci initLedger
|
|
./network.sh deployCC -ccn secure -ccv 1 -ccl golang
|
|
./network.sh down
|
|
workingDirectory: test-network
|
|
displayName: Start Test Network
|