Skip to content

Commit fab7b0e

Browse files
committed
tests: build skydive executable to run VPP tests
1 parent 76ea572 commit fab7b0e

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

scripts/ci/jobs/jobs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@
825825
builders:
826826
- skydive-cleanup
827827
- skydive-test:
828-
test: BACKEND=elasticsearch WITH_EBPF=true WITH_VPP=true TEST_PATTERN='(EBPF|SRIOV|VPP|Libvirt)' TAGS="$TAGS libvirt_tests sriov_tests" scripts/ci/run-functional-tests.sh
828+
test: scripts/ci/run-hw-functional-tests.sh
829829
publishers:
830830
- junit:
831831
results: tests.xml
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
set -v
4+
set -e
5+
6+
DIR="$(dirname "$0")"
7+
8+
. "$DIR/run-tests-utils.sh"
9+
network_setup
10+
11+
# Build the skydive executable for starting seeds
12+
make WITH_VPP=true
13+
14+
WITH_OVN=true WITH_OPENCONTRAIL=false WITH_EBPF=true WITH_VPP=true \
15+
SKYDIVE_SEED_EXECUTABLE=$GOPATH/bin/skydive \
16+
BACKEND=elasticsearch TEST_PATTERN='(EBPF|SRIOV|VPP|Libvirt)' \
17+
TAGS="$TAGS libvirt_tests sriov_tests" tests_run
18+
19+
exit $RETCODE

0 commit comments

Comments
 (0)