-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathTaskfile.yml
30 lines (26 loc) · 1.23 KB
/
Taskfile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
version: "3"
tasks:
update-addressbook:
cmds:
- go test ./sdk -tags="abnet" -v -run TestIntegrationAddressBookQueryPreviewnet
- go test ./sdk -tags="abnet" -v -run TestIntegrationAddressBookQueryTestnet
- go test ./sdk -tags="abnet" -v -run TestIntegrationAddressBookQueryMainnet
run-examples:
cmds:
- |
for example in examples/*; do
dir_name=$(basename "$example")
# Skip the consensus_pub_sub_chunked directory
if [ "$dir_name" == "consensus_pub_sub_chunked" ] || [ "$dir_name" == "initialize-client-with-mirror-node-adress-book" ]; then
echo "Skipping $example"
continue
fi
if [ -d "$example" ]; then
pushd "$example" > /dev/null
if [ -f main.go ]; then
echo "Running $example/main.go"
env OPERATOR_KEY="9a07bbdbb62e24686d2a4259dc88e38438e2c7a1ba167b147ad30ac540b0a3cd" OPERATOR_ID="0.0.1031" HEDERA_NETWORK="localhost" go run main.go
fi
popd > /dev/null
fi
done