Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | |
Maros Ondrejicka | f643b6f | 2023-01-17 10:52:20 +0100 | [diff] [blame] | 3 | if [ $(lsb_release -is) != Ubuntu ]; then |
| 4 | echo "Host stack test framework is supported only on Ubuntu" |
| 5 | exit 1 |
| 6 | fi |
| 7 | |
Maros Ondrejicka | 2ddb2fd | 2023-02-15 17:44:46 +0100 | [diff] [blame] | 8 | if [ -z $(which ab) ]; then |
| 9 | echo "Host stack test framework requires apache2-utils to be installed" |
| 10 | echo "It is recommended to run 'sudo make install-dep'" |
| 11 | exit 1 |
| 12 | fi |
| 13 | |
| 14 | if [ -z $(which wrk) ]; then |
| 15 | echo "Host stack test framework requires wrk to be installed" |
| 16 | echo "It is recommended to run 'sudo make install-dep'" |
| 17 | exit 1 |
| 18 | fi |
| 19 | |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 20 | export VPP_WS=../.. |
| 21 | |
| 22 | if [ "$1" == "debug" ]; then |
| 23 | VPP_BUILD_ROOT=${VPP_WS}/build-root/build-vpp_debug-native/vpp |
| 24 | else |
| 25 | VPP_BUILD_ROOT=${VPP_WS}/build-root/build-vpp-native/vpp |
| 26 | fi |
| 27 | echo "Taking build objects from ${VPP_BUILD_ROOT}" |
| 28 | |
| 29 | if [ -z "$UBUNTU_VERSION" ] ; then |
| 30 | export UBUNTU_VERSION=$(lsb_release -rs) |
| 31 | fi |
| 32 | echo "Ubuntu version is set to ${UBUNTU_VERSION}" |
| 33 | |
| 34 | export HST_LDPRELOAD=${VPP_BUILD_ROOT}/lib/x86_64-linux-gnu/libvcl_ldpreload.so |
| 35 | echo "HST_LDPRELOAD is set to ${HST_LDPRELOAD}" |
| 36 | |
| 37 | export PATH=${VPP_BUILD_ROOT}/bin:$PATH |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 38 | |
| 39 | bin=vpp-data/bin |
| 40 | lib=vpp-data/lib |
| 41 | |
| 42 | mkdir -p ${bin} ${lib} || true |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 43 | rm -rf vpp-data/bin/* || true |
| 44 | rm -rf vpp-data/lib/* || true |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 45 | |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 46 | cp ${VPP_BUILD_ROOT}/bin/* ${bin} |
Maros Ondrejicka | f643b6f | 2023-01-17 10:52:20 +0100 | [diff] [blame] | 47 | res+=$? |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 48 | cp -r ${VPP_BUILD_ROOT}/lib/x86_64-linux-gnu/* ${lib} |
Maros Ondrejicka | f643b6f | 2023-01-17 10:52:20 +0100 | [diff] [blame] | 49 | res+=$? |
| 50 | if [ $res -ne 0 ]; then |
| 51 | echo "Failed to copy VPP files. Is VPP built? Try running 'make build' in VPP directory." |
| 52 | exit 1 |
| 53 | fi |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 54 | |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 55 | docker_build () { |
| 56 | tag=$1 |
| 57 | dockername=$2 |
| 58 | docker build --build-arg UBUNTU_VERSION --build-arg http_proxy=$HTTP_PROXY \ |
| 59 | -t $tag -f docker/Dockerfile.$dockername . |
| 60 | } |
| 61 | |
| 62 | docker_build hs-test/vpp vpp |
| 63 | docker_build hs-test/nginx-ldp nginx |
Maros Ondrejicka | c2f76f4 | 2023-02-27 13:22:45 +0100 | [diff] [blame] | 64 | docker_build hs-test/nginx-server nginx-server |
Filip Tehlar | 31eaea9 | 2023-06-15 10:06:57 +0200 | [diff] [blame] | 65 | docker_build hs-test/build build |
| 66 | if [ "$HST_EXTENDED_TESTS" = true ] ; then |
| 67 | docker_build hs-test/nginx-http3 nginx-http3 |
| 68 | docker_build hs-test/curl curl |
| 69 | fi |
Filip Tehlar | e08fdf3 | 2023-04-26 18:03:35 +0200 | [diff] [blame] | 70 | |
| 71 | # cleanup detached images |
| 72 | images=$(docker images --filter "dangling=true" -q --no-trunc) |
| 73 | if [ "$images" != "" ]; then |
| 74 | docker rmi $images |
| 75 | fi |