mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-07 15:47:01 +02:00
BUILD: cirrus-ci: choose proper openssl package name
freebsd-11.3 and 12.1 comes with different openssl naming let us add proper switch to cirrus-ci script
This commit is contained in:
parent
cd7fa3dcfc
commit
d9514b6e79
@ -5,7 +5,13 @@ FreeBSD_task:
|
|||||||
image_family: freebsd-11-3-snap
|
image_family: freebsd-11-3-snap
|
||||||
only_if: $CIRRUS_BRANCH =~ 'master|next'
|
only_if: $CIRRUS_BRANCH =~ 'master|next'
|
||||||
install_script:
|
install_script:
|
||||||
- pkg install -y openssl111 git gmake lua53 socat
|
- case `uname -r` in
|
||||||
|
11.3*)
|
||||||
|
export SSL=openssl;;
|
||||||
|
12.1*)
|
||||||
|
export SSL=openssl111;;
|
||||||
|
esac
|
||||||
|
- pkg install -y $SSL git gmake lua53 socat
|
||||||
script:
|
script:
|
||||||
- git clone https://github.com/VTest/VTest.git ../vtest
|
- git clone https://github.com/VTest/VTest.git ../vtest
|
||||||
- make -C ../vtest
|
- make -C ../vtest
|
||||||
|
Loading…
Reference in New Issue
Block a user