let us drop builds. when someone will invest into it, we'll bring em back. Ilya
вт, 8 дек. 2020 г. в 15:08, Илья Шипицин <[email protected]>: > I played with various options. > while things work well on my personal centos 6 vm, they still do not work > on cirrus > > https://github.com/chipitsine/haproxy/blob/master/.cirrus.yml#L21-L22 > (we cannot use yum-config-manager --add-repo=..., because > yum-config-manager is not installed) > > build: > https://cirrus-ci.com/task/4596651333517312 > > any ideas what to try ? > > чт, 3 дек. 2020 г. в 10:48, Илья Шипицин <[email protected]>: > >> I'll check on weekend whether we can switch to vault repo >> >> чт, 3 дек. 2020 г. в 02:48, Willy Tarreau <[email protected]>: >> >>> On Wed, Dec 02, 2020 at 10:29:03PM +0100, Adis Nezirovic wrote: >>> > On 12/2/20 9:45 PM, Willy Tarreau wrote: >>> > > On Wed, Dec 02, 2020 at 10:19:47PM +0500, ???? ??????? wrote: >>> > > > seems, CentOS 6 packages were removed from mirrors >>> > > > >>> > > > https://cirrus-ci.com/task/5915513668763648 >>> > > >>> > > I've never understood why some distros do something that stupid. They >>> > > even prevent some people from setting up a backup server in >>> emergency. >>> > > >>> > > So does this mean we'll drop this one ? >>> > >>> > For what it's worth, after EOL, data is moved to CentOS vault: >>> > >>> > https://vault.centos.org/6.10/ >>> >>> Thanks Adis. Not sure what this implies for setup scripts, but >>> it's good to know. >>> >>> Willy >>> >>
From 9283fb131affc6f71e9d0511bdeec054f56b22ec Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin <[email protected]> Date: Wed, 16 Dec 2020 13:06:53 +0500 Subject: [PATCH] CI: cirrus: drop CentOS 6 builds CentOS 6 packages were removed from repo. Also, I was not able to get it working using centos vault. Further discussion on ML: https://www.mail-archive.com/[email protected]/msg38908.html --- .cirrus.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 970ab3ae4..e8b70de6d 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -12,20 +12,3 @@ FreeBSD_task: - ./haproxy -vv - ldd haproxy - env VTEST_PROGRAM=../vtest/vtest gmake reg-tests REGTESTS_TYPES=default,bug,devel || (for folder in /tmp/*regtest*/vtc.*; do cat $folder/INFO $folder/LOG; done && exit 1) - -centos_6_task: - container: - image: centos:centos6 - only_if: $CIRRUS_BRANCH =~ 'master|next' - script: - - yum install -q -y gcc git openssl-devel pcre-devel epel-release socat - - yum install -q -y python34 - - git clone https://github.com/VTest/VTest.git ../vtest - # Special flags due to: https://github.com/vtest/VTest/issues/12 - - make -C ../vtest FLAGS="-O2 -s -Wall -lrt" - - make CC=cc V=1 TARGET=linux-glibc-legacy USE_ZLIB=1 USE_PCRE=1 USE_OPENSSL=1 - - ./haproxy -vv - - ldd haproxy - # remove some reg-tests (CentOS 6 does not support alpn) - - rm reg-tests/{connection/proxy_protocol_random_fail,checks/tcp-check-ssl,connection/proxy_protocol_send_unique_id_alpn}.vtc - - env VTEST_PROGRAM=../vtest/vtest make reg-tests REGTESTS_TYPES=default,bug,devel || (for folder in /tmp/*regtest*/vtc.*; do cat $folder/INFO $folder/LOG; done && exit 1) -- 2.28.0

