Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement option retis pcap --list-probes #504

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ functional_task:
- name: Centos 8 Stream (x86_64)
env:
DISTRO: x86_64-c8s
TEST_EXTRA_ARGS: "--ignore=test_ovs.py --ignore=test_nft.py"
TEST_EXTRA_ARGS: "--ignore=test_ovs.py --ignore=test_nft.py --ignore=test_pcap.py"
CARGO_CMD_OPTS: "--no-default-features"
- name: Centos 9 Stream (x86_64)
env:
Expand Down
4 changes: 3 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# vi: set ft=ruby :

# Common for all rhel-like distros
# Installation of scapy 2.6.1 and above will fail on RHEL 8.
$bootstrap_rhel_common = <<SCRIPT
set -euxo pipefail
dnf install -y \
Expand All @@ -23,6 +24,7 @@ dnf install -y \
ethtool

python3 -m pip install pytest pyroute2
python3 -m pip install "scapy>=2.6.1"
SCRIPT

# CentOS mirror URL changed but the c8s image is no longer being built. We
Expand Down Expand Up @@ -123,7 +125,7 @@ Vagrant.configure("2") do |config|
jq

su vagrant -c "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -qy"
python3 -m pip install pytest pyroute2
python3 -m pip install pytest pyroute2 "scapy>=2.6.1"
SHELL

jammy.vm.synced_folder ".", "/vagrant", type: "rsync"
Expand Down
Loading