Skip to content

Commit d669fa0

Browse files
ramfox“ramfox”dignifiedquireArqu
authored
chore: release prep (#57)
* chore: add patch for `iroh` dependencies Updates the following dependencies to use their main branches: - `iroh` from `https://github.com/n0-computer/iroh.git` - `iroh-base` from `https://github.com/n0-computer/iroh.git` * first pass at updating the breaking changes in rust * update main.c * update deps to released * add Cargo.lock * fix(ci): node_id > endpoint_id --------- Co-authored-by: “ramfox” <“[email protected]”> Co-authored-by: dignifiedquire <[email protected]> Co-authored-by: Asmir Avdicevic <[email protected]>
1 parent 2043290 commit d669fa0

File tree

9 files changed

+4870
-351
lines changed

9 files changed

+4870
-351
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ jobs:
8484
json_output=$(echo $line | jq .)
8585
8686
# Store variables
87-
node_id=$(echo $json_output | jq -r '.node_id')
87+
endpoint_id=$(echo $json_output | jq -r '.endpoint_id')
8888
relay=$(echo $json_output | jq -r '.relay')
8989
addrs=$(echo $json_output | jq -r '.addrs[]')
90-
./main client $node_id $relay ${addrs[@]}
90+
./main client $endpoint_id $relay ${addrs[@]}
9191
sleep 10
9292
9393
# wait for server the shutdown
@@ -218,10 +218,10 @@ jobs:
218218
$json_output = ConvertFrom-Json $line
219219
220220
# Store variables
221-
$node_id = $json_output.node_id
221+
$endpoint_id = $json_output.endpoint_id
222222
$relay = $json_output.relay
223223
$addrs = $json_output.addrs
224-
& "./main" "client" $node_id $relay $addrs
224+
& "./main" "client" $endpoint_id $relay $addrs
225225
226226
# wait for the server process to terminate
227227
Wait-Process -InputObject $server_process

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/target
2-
Cargo.lock
32
*.a
43
*.o
54
# executables

0 commit comments

Comments
 (0)