Skip to content

Commit

Permalink
Merge pull request #12 from ovn-org/install-newer-scapy
Browse files Browse the repository at this point in the history
ci: Install newer version of scapy.
  • Loading branch information
fnordahl authored Mar 4, 2024
2 parents 23e59d5 + 96f3d7f commit 6ca0517
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,20 @@ name: Build and Test

on:
push:
branches:
- main
- 'branch-**'
pull_request:

jobs:
build-linux:
env:
dependencies: |
apt-dependencies: |
automake libtool gcc bc libssl-dev llvm-dev libelf-dev \
libnuma-dev libpcap-dev ncat libunbound-dev libunwind-dev \
libudev-dev python3-scapy
libudev-dev python3-pip
pip-dependencies: |
scapy
CC: ${{ matrix.compiler }}
TESTSUITE: ${{ matrix.testsuite }}
ASAN: ${{ matrix.asan }}
Expand Down Expand Up @@ -55,7 +60,8 @@ jobs:
set -euxo pipefail
sudo apt update
sudo apt remove -y netcat-openbsd
sudo apt -y install ${{ env.dependencies }}
sudo apt -y install ${{ env.apt-dependencies }}
sudo pip install ${{ env.pip-dependencies }}
- name: build OVS
run: |
Expand Down

0 comments on commit 6ca0517

Please sign in to comment.