From 7312c5fe82f65c11f01afc5206a6b7ae6cb5afc4 Mon Sep 17 00:00:00 2001 From: Kasey Date: Tue, 19 Mar 2024 16:38:25 -0400 Subject: [PATCH] fix netsim and ci --- .github/workflows/ci.yml | 2 +- .github/workflows/netsim.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 129f5c95c71..5c5e7aa2319 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -192,7 +192,7 @@ jobs: - name: Copy binaries to right location run: | cp target/release/iroh ../chuck/netsim/bins/iroh - cp target/release/derper ../chuck/netsim/bins/derper + cp target/release/iroh-relay ../chuck/netsim/bins/derper cp ../chuck/target/release/chuck ../chuck/netsim/bins/chuck - name: Run tests diff --git a/.github/workflows/netsim.yml b/.github/workflows/netsim.yml index 3e81092a1d1..3e7d660443e 100644 --- a/.github/workflows/netsim.yml +++ b/.github/workflows/netsim.yml @@ -97,7 +97,7 @@ jobs: - name: Copy binaries to right location run: | cp target/optimized-release/iroh ../chuck/netsim/bins/iroh - cp target/optimized-release/iroh-relay ../chuck/netsim/bins/iroh-relay + cp target/optimized-release/iroh-relay ../chuck/netsim/bins/derper cp ../chuck/target/release/chuck ../chuck/netsim/bins/chuck - name: Detect comment commands @@ -132,7 +132,7 @@ jobs: - name: Cleanup run: | - sudo kill -9 $(pgrep iroh-relay) || true + sudo kill -9 $(pgrep derper) || true sudo kill -9 $(pgrep iroh) || true sudo kill -9 $(pgrep ovs) || true sudo mn --clean || true