Skip to content

Commit

Permalink
Test also vm-to-host
Browse files Browse the repository at this point in the history
Fixes #29
  • Loading branch information
nirs committed Feb 28, 2025
1 parent d59889f commit 85df33c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,11 @@ jobs:
$ssh_cmd sudo apt-get update -y
$ssh_cmd sudo DEBIAN_FRONTEND=noninteractive apt-get install -y iperf3
$ssh_cmd sudo systemctl start iperf3.service
- name: Run iperf3
- name: Run iperf3 (host to vm)
run: |
vm_ip=$(cat $HOME/.vmnet-helper/vms/test/ip-address)
iperf3-darwin -c $vm_ip
- name: Run iperf3 (vm to host)
run: |
vm_ip=$(cat $HOME/.vmnet-helper/vms/test/ip-address)
iperf3-darwin -c $vm_ip --reverse

0 comments on commit 85df33c

Please sign in to comment.