Re: [PATCH 2/3] CI: build-ssl.sh: allow to choose certain QuicTLS commit hash

2024-05-30 Thread Илья Шипицин
пт, 31 мая 2024 г. в 01:16, William Lallemand : > On Thu, May 30, 2024 at 10:31:14PM +0200, Ilia Shipitsin wrote: > > Subject: [PATCH 2/3] CI: build-ssl.sh: allow to choose certain QuicTLS > commit hash > > --- > > scripts/build-ssl.sh | 6 ++ > > 1 file changed, 6 insertions(+) > > > > diff

Re: [PATCH 2/3] CI: build-ssl.sh: allow to choose certain QuicTLS commit hash

2024-05-30 Thread William Lallemand
On Thu, May 30, 2024 at 10:31:14PM +0200, Ilia Shipitsin wrote: > Subject: [PATCH 2/3] CI: build-ssl.sh: allow to choose certain QuicTLS commit > hash > --- > scripts/build-ssl.sh | 6 ++ > 1 file changed, 6 insertions(+) > > diff --git a/scripts/build-ssl.sh b/scripts/build-ssl.sh > index f

[PATCH 1/3] CI: introduce QuicTLS commit helper

2024-05-30 Thread Ilia Shipitsin
QuicTLS is not changed frequently, thus it makes sense to cache it across builds. We need its "version", let's stick on commit hash --- .github/matrix.py | 57 ++- 1 file changed, 47 insertions(+), 10 deletions(-) diff --git a/.github/matrix.py b/.githu

[PATCH 0/3] CI: enable QuicTLS cache

2024-05-30 Thread Ilia Shipitsin
QuicTLS cache is enabled per commit hash (as it has no releases). The latest commit hash is determined during matrix build and used on later stages. Ilia Shipitsin (3): CI: introduce QuicTLS commit helper CI: build-ssl.sh: allow to choose certain QuicTLS commit hash CI: enable QuicTLS cache

[PATCH 2/3] CI: build-ssl.sh: allow to choose certain QuicTLS commit hash

2024-05-30 Thread Ilia Shipitsin
--- scripts/build-ssl.sh | 6 ++ 1 file changed, 6 insertions(+) diff --git a/scripts/build-ssl.sh b/scripts/build-ssl.sh index f1a6f8a86..15d2c242f 100755 --- a/scripts/build-ssl.sh +++ b/scripts/build-ssl.sh @@ -149,6 +149,12 @@ build_aws_lc () { download_quictls () { if [ ! -d "${BUI

[PATCH 3/3] CI: enable QuicTLS cache

2024-05-30 Thread Ilia Shipitsin
--- .github/workflows/vtest.yml | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/vtest.yml b/.github/workflows/vtest.yml index 8b10a1cdc..1c4dcb45b 100644 --- a/.github/workflows/vtest.yml +++ b/.github/workflows/vtest.yml @@ -56,14 +56,21 @@ jobs:

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread William Lallemand
On Thu, May 30, 2024 at 04:13:23PM +0200, Илья Шипицин wrote: > feel free to modify it when applying. or I can send v2 > Thanks, merged! -- William Lallemand

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread William Lallemand
On Thu, May 30, 2024 at 04:37:20PM +0200, Илья Шипицин wrote: > чт, 30 мая 2024 г. в 16:12, William Lallemand : > > > On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > > > Subject: [PATCH 1/1] CI: VTest: accelerate package install a bit > > > let's check and install only package is

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread Илья Шипицин
чт, 30 мая 2024 г. в 16:12, William Lallemand : > On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > > Subject: [PATCH 1/1] CI: VTest: accelerate package install a bit > > let's check and install only package is required > > --- > > .github/workflows/vtest.yml | 8 > > 1 f

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread Илья Шипицин
чт, 30 мая 2024 г. в 16:14, Willy Tarreau : > Hi Ilya, > > On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > > + ${{ contains(matrix.FLAGS, 'USE_LUA=1') && > 'liblua5.4-dev' || '' }} \ > > + ${{ contains(matrix.FLAGS, 'USE_PCRE2=1') && > 'libpcre2-dev' ||

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread Willy Tarreau
On Thu, May 30, 2024 at 04:12:02PM +0200, William Lallemand wrote: > On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > > Subject: [PATCH 1/1] CI: VTest: accelerate package install a bit > > let's check and install only package is required > > --- > > .github/workflows/vtest.yml | 8

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread Willy Tarreau
Hi Ilya, On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > + ${{ contains(matrix.FLAGS, 'USE_LUA=1') && 'liblua5.4-dev' || > '' }} \ > + ${{ contains(matrix.FLAGS, 'USE_PCRE2=1') && 'libpcre2-dev' || > '' }} \ > + ${{ contains(matrix.FLAGS, 'US

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread Илья Шипицин
feel free to modify it when applying. or I can send v2 чт, 30 мая 2024 г. в 16:12, William Lallemand : > On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > > Subject: [PATCH 1/1] CI: VTest: accelerate package install a bit > > let's check and install only package is required > > --

Re: [PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread William Lallemand
On Thu, May 30, 2024 at 03:40:31PM +0200, Ilia Shipitsin wrote: > Subject: [PATCH 1/1] CI: VTest: accelerate package install a bit > let's check and install only package is required > --- > .github/workflows/vtest.yml | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git

Re: [PATCH] FEATURE: Adding MPTCP with option to disable it and fall-back to TCP

2024-05-30 Thread Willy Tarreau
Hi Matthieu, finally a bit more available again... On Fri, Apr 26, 2024 at 06:34:02PM +0200, Matthieu Baerts wrote: > > I *am* interested in the feature, which has been > > floating around for a few years already. However I tend to agree with > > Nicolas that, at least for the principle of least

Re: [PATCH v2] FEATURE: add opt-in MPTCP support

2024-05-30 Thread Willy Tarreau
Hi Dorian, I'm now done with the release and having more time to read your work. First, thanks for this update. I understand that you're almost running out of time on this topic which must be completed before June so I'm not going to make you waste your time. Some comments below. On Thu, May 16,

[PATCH 1/1] CI: VTest: accelerate package install a bit

2024-05-30 Thread Ilia Shipitsin
let's check and install only package is required --- .github/workflows/vtest.yml | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/vtest.yml b/.github/workflows/vtest.yml index f862dc5a7..5208df757 100644 --- a/.github/workflows/vtest.yml +++ b/.github/w

[PATCH 0/1] CI: install apt packages in more intelligent way

2024-05-30 Thread Ilia Shipitsin
let's install only requires packages Ilia Shipitsin (1): CI: VTest: accelerate package install a bit .github/workflows/vtest.yml | 8 1 file changed, 4 insertions(+), 4 deletions(-) -- 2.43.0.windows.1