Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ jobs:
json_output=$(echo $line | jq .)

# Store variables
node_id=$(echo $json_output | jq -r '.node_id')
endpoint_id=$(echo $json_output | jq -r '.endpoint_id')
relay=$(echo $json_output | jq -r '.relay')
addrs=$(echo $json_output | jq -r '.addrs[]')
./main client $node_id $relay ${addrs[@]}
./main client $endpoint_id $relay ${addrs[@]}
sleep 10

# wait for server the shutdown
Expand Down Expand Up @@ -218,10 +218,10 @@ jobs:
$json_output = ConvertFrom-Json $line

# Store variables
$node_id = $json_output.node_id
$endpoint_id = $json_output.endpoint_id
$relay = $json_output.relay
$addrs = $json_output.addrs
& "./main" "client" $node_id $relay $addrs
& "./main" "client" $endpoint_id $relay $addrs

# wait for the server process to terminate
Wait-Process -InputObject $server_process
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/target
Cargo.lock
*.a
*.o
# executables
Expand Down
Loading
Loading