Skip to content

Commit ed451b4

Browse files
Appropriate naming of files in github workflows and fixing some bugs
Signed-off-by: Dhinakaran Vinayagamurthy <[email protected]>
1 parent e4c884f commit ed451b4

File tree

8 files changed

+4
-4
lines changed

8 files changed

+4
-4
lines changed
File renamed without changes.
File renamed without changes.

.github/workflows/data-transfer.yml renamed to .github/workflows/test_data-transfer.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,20 +193,20 @@ jobs:
193193
194194
# CORDA - FABRIC1
195195
./clients/build/install/clients/bin/clients request-state localhost:9081 relay-network1:9080/network1/mychannel:simplestate:Read:a 1> tmp.out
196-
tail -n 1 tmp.out | grep "SimpleState(key=a, value=Arcturus" && COUNT=$(( COUNT + 1 )) && echo "PASS"
196+
cat tmp.out | grep "SimpleState(key=a, value=Arcturus" && COUNT=$(( COUNT + 1 )) && echo "PASS"
197197
cat tmp.out
198198
199199
./clients/build/install/clients/bin/clients get-state a 1> tmp.out
200-
tail -n 1 tmp.out | grep "SimpleState(key=a, value=Arcturus" && COUNT=$(( COUNT + 1 )) && echo "PASS"
200+
cat tmp.out | grep "SimpleState(key=a, value=Arcturus" && COUNT=$(( COUNT + 1 )) && echo "PASS"
201201
cat tmp.out
202202
203203
# CORDA - FABRIC2
204204
./clients/build/install/clients/bin/clients request-state localhost:9081 relay-network2:9083/network2/mychannel:simplestate:Read:Arcturus 1> tmp.out
205-
tail -n 1 tmp.out | grep "SimpleState(key=Arcturus, value=17.671" && COUNT=$(( COUNT + 1 )) && echo "PASS"
205+
cat tmp.out | grep "SimpleState(key=Arcturus, value=17.671" && COUNT=$(( COUNT + 1 )) && echo "PASS"
206206
cat tmp.out
207207
208208
./clients/build/install/clients/bin/clients get-state Arcturus 1> tmp.out
209-
tail -n 1 tmp.out | grep "SimpleState(key=Arcturus, value=17.671" && COUNT=$(( COUNT + 1 )) && echo "PASS"
209+
cat tmp.out | grep "SimpleState(key=Arcturus, value=17.671" && COUNT=$(( COUNT + 1 )) && echo "PASS"
210210
cat tmp.out
211211
212212
# RESULT
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)