diff options
author | 2024-10-02 15:07:40 +0200 | |
---|---|---|
committer | 2024-10-03 04:56:10 +0000 | |
commit | 7bae9b0e824d17de3769b2de299ad2d2c88e2620 (patch) | |
tree | 2ae63e0cefa4458ce293a0fd3d2d99542bb8a5af /extras/hs-test/script | |
parent | 2c52f5e8886fe2d7fa2aeb1fa15a8c9491b0128e (diff) |
hs-test: use nginx 1.26.2 for NginxHttp3Test
- test is no longer marked as extended
- no building required -> removed nginx build scripts
Type: test
Change-Id: I1814b1e4b7e514f81797efa3b5c1e818d2fe4cda
Signed-off-by: Adrian Villin <avillin@cisco.com>
Diffstat (limited to 'extras/hs-test/script')
-rwxr-xr-x | extras/hs-test/script/build_boringssl.sh | 4 | ||||
-rwxr-xr-x | extras/hs-test/script/build_hst.sh | 4 | ||||
-rwxr-xr-x | extras/hs-test/script/build_nginx.sh | 5 |
3 files changed, 1 insertions, 12 deletions
diff --git a/extras/hs-test/script/build_boringssl.sh b/extras/hs-test/script/build_boringssl.sh deleted file mode 100755 index cca4e4a31d1..00000000000 --- a/extras/hs-test/script/build_boringssl.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -cd boringssl || exit 1 -cmake -GNinja -B build -ninja -C build diff --git a/extras/hs-test/script/build_hst.sh b/extras/hs-test/script/build_hst.sh index 9b11f5f0272..861eca5eb5f 100755 --- a/extras/hs-test/script/build_hst.sh +++ b/extras/hs-test/script/build_hst.sh @@ -85,9 +85,7 @@ docker_build hs-test/vpp vpp docker_build hs-test/nginx-ldp nginx docker_build hs-test/nginx-server nginx-server docker_build hs-test/curl curl -if [ "$HST_EXTENDED_TESTS" = true ] ; then - docker_build hs-test/nginx-http3 nginx-http3 -fi +docker_build hs-test/nginx-http3 nginx-http3 # cleanup detached images images=$(docker images --filter "dangling=true" -q --no-trunc) diff --git a/extras/hs-test/script/build_nginx.sh b/extras/hs-test/script/build_nginx.sh deleted file mode 100755 index f21201c4297..00000000000 --- a/extras/hs-test/script/build_nginx.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash -cd nginx || exit 1 -./auto/configure --with-debug --with-http_v3_module --with-cc-opt="-I../boringssl/include" --with-ld-opt="-L../boringssl/build/ssl -L../boringssl/build/crypto" --without-http_rewrite_module --without-http_gzip_module -make -make install |