File tree 8 files changed +41
-11
lines changed
commercial-paper/organization
8 files changed +41
-11
lines changed Original file line number Diff line number Diff line change 21
21
- template : install-fabric.yml
22
22
- template : fabcar-go.yml
23
23
24
+ - job : test_network
25
+ displayName : Start the test network
26
+ pool :
27
+ vmImage : ubuntu-18.04
28
+ dependsOn : []
29
+ timeoutInMinutes : 60
30
+ steps :
31
+ - template : install-deps.yml
32
+ - template : install-fabric.yml
33
+ - template : testnetwork.yml
34
+
24
35
- job : fabcar_java
25
36
displayName : FabCar (Java)
26
37
pool :
75
86
- template : install-deps.yml
76
87
- template : install-fabric.yml
77
88
- template : commercialpaper-java.yml
89
+
78
90
- job : commercialpaper_go
79
91
displayName : CommercialPaper (Go)
80
92
pool :
Original file line number Diff line number Diff line change 22
22
ls -l /usr/local/bin/peer
23
23
sudo tar xzvf /tmp/hyperledger-fabric-linux-amd64-latest.tar.gz -C ..
24
24
./network.sh down
25
- ./network.sh up createChannel -s couchdb -i 2.0.0-beta
25
+ ./network.sh up createChannel -s couchdb -i 2.0.0
26
26
27
27
# Copy the connection profiles so they are in the correct organizations.
28
28
cp "./organizations/peerOrganizations/org1.example.com/connection-org1.yaml" "../commercial-paper/organization/digibank/gateway/"
Original file line number Diff line number Diff line change 17
17
ls -l /usr/local/bin/peer
18
18
sudo tar xzvf /tmp/hyperledger-fabric-linux-amd64-latest.tar.gz -C ..
19
19
./network.sh down
20
- ./network.sh up createChannel -s couchdb -i 2.0.0-beta
20
+ ./network.sh up createChannel -s couchdb -i 2.0.0
21
21
22
22
# Copy the connection profiles so they are in the correct organizations.
23
23
cp "./organizations/peerOrganizations/org1.example.com/connection-org1.yaml" "../commercial-paper/organization/digibank/gateway/"
Original file line number Diff line number Diff line change 8
8
ls -l /usr/local/bin/peer
9
9
sudo tar xzvf /tmp/hyperledger-fabric-linux-amd64-latest.tar.gz -C ..
10
10
./network.sh down
11
- ./network.sh up createChannel -s couchdb -i 2.0.0-beta
11
+ ./network.sh up createChannel -s couchdb -i 2.0.0
12
12
13
13
# Copy the connection profiles so they are in the correct organizations.
14
14
cp "./organizations/peerOrganizations/org1.example.com/connection-org1.yaml" "../commercial-paper/organization/digibank/gateway/"
Original file line number Diff line number Diff line change
1
+ #
2
+ # SPDX-License-Identifier: Apache-2.0
3
+ #
4
+
5
+ steps :
6
+ - script : |
7
+ sudo tar xzvf /tmp/hyperledger-fabric-linux-amd64-latest.tar.gz -C ..
8
+ ./network.sh down
9
+ ./network.sh up createChannel -s couchdb -i 2.0.0
10
+ ./network.sh deployCC -l javascript
11
+
12
+ workingDirectory: test-network
13
+ displayName: Start up test network
14
+ env:
15
+ FABRIC_CFG_PATH: /usr/local/config
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
21
21
cd " ${DIR} /../../../test-network"
22
22
env | sort > /tmp/env.orig
23
23
24
- ORG =" 1"
24
+ OVERRIDE_ORG =" 1"
25
25
. ./scripts/envVar.sh
26
26
27
27
parsePeerConnectionParameters 1 2
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
21
21
cd " ${DIR} /../../../test-network"
22
22
env | sort > /tmp/env.orig
23
23
24
- ORG =" 2"
24
+ OVERRIDE_ORG =" 2"
25
25
. ./scripts/envVar.sh
26
26
27
27
Original file line number Diff line number Diff line change @@ -21,22 +21,25 @@ setOrdererGlobals() {
21
21
22
22
# Set environment variables for the peer org
23
23
setGlobals () {
24
- if [ -z " $ORG " ]; then
25
- ORG=$1
24
+ local USING_ORG=" "
25
+ if [ -z " $OVERRIDE_ORG " ]; then
26
+ USING_ORG=$1
27
+ else
28
+ USING_ORG=" ${OVERRIDE_ORG} "
26
29
fi
27
-
28
- if [ $ORG -eq 1 ]; then
30
+ echo " Using organization ${USING_ORG} "
31
+ if [ $USING_ORG -eq 1 ]; then
29
32
export CORE_PEER_LOCALMSPID=" Org1MSP"
30
33
export CORE_PEER_TLS_ROOTCERT_FILE=$PEER0_ORG1_CA
31
34
export CORE_PEER_MSPCONFIGPATH=${PWD} /organizations/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
32
35
export CORE_PEER_ADDRESS=localhost:7051
33
- elif [ $ORG -eq 2 ]; then
36
+ elif [ $USING_ORG -eq 2 ]; then
34
37
export CORE_PEER_LOCALMSPID=" Org2MSP"
35
38
export CORE_PEER_TLS_ROOTCERT_FILE=$PEER0_ORG2_CA
36
39
export CORE_PEER_MSPCONFIGPATH=${PWD} /organizations/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp
37
40
export CORE_PEER_ADDRESS=localhost:9051
38
41
39
- elif [ $ORG -eq 3 ]; then
42
+ elif [ $USING_ORG -eq 3 ]; then
40
43
export CORE_PEER_LOCALMSPID=" Org3MSP"
41
44
export CORE_PEER_TLS_ROOTCERT_FILE=$PEER0_ORG3_CA
42
45
export CORE_PEER_MSPCONFIGPATH=${PWD} /organizations/peerOrganizations/org3.example.com/users/Admin@org3.example.com/msp
You can’t perform that action at this time.
0 commit comments