mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-04 16:03:26 +02:00
CI: introduce scripts/build-vtest.sh for installing VTest
we install VTest for all CI systems, let us unify instalation
This commit is contained in:
committed by
Willy Tarreau
parent
18c7d83934
commit
0b03895620
10
scripts/build-vtest.sh
Executable file
10
scripts/build-vtest.sh
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -eux
|
||||
|
||||
curl -fsSL https://github.com/vtest/VTest/archive/master.tar.gz -o VTest.tar.gz
|
||||
mkdir ../vtest
|
||||
tar xvf VTest.tar.gz -C ../vtest --strip-components=1
|
||||
# Special flags due to: https://github.com/vtest/VTest/issues/12
|
||||
make -C ../vtest FLAGS="-O2 -s -Wall"
|
||||
|
||||
Reference in New Issue
Block a user