File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,20 @@ name: Build and Test
2
2
3
3
on :
4
4
push :
5
+ branches :
6
+ - main
7
+ - ' branch-**'
5
8
pull_request :
6
9
7
10
jobs :
8
11
build-linux :
9
12
env :
10
- dependencies : |
13
+ apt- dependencies : |
11
14
automake libtool gcc bc libssl-dev llvm-dev libelf-dev \
12
15
libnuma-dev libpcap-dev ncat libunbound-dev libunwind-dev \
13
- libudev-dev python3-scapy
16
+ libudev-dev python3-pip
17
+ pip-dependencies : |
18
+ scapy
14
19
CC : ${{ matrix.compiler }}
15
20
TESTSUITE : ${{ matrix.testsuite }}
16
21
ASAN : ${{ matrix.asan }}
55
60
set -euxo pipefail
56
61
sudo apt update
57
62
sudo apt remove -y netcat-openbsd
58
- sudo apt -y install ${{ env.dependencies }}
63
+ sudo apt -y install ${{ env.apt-dependencies }}
64
+ sudo pip install ${{ env.pip-dependencies }}
59
65
60
66
- name : build OVS
61
67
run : |
You can’t perform that action at this time.
0 commit comments