]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: github: fix vtest.yml with "not quictls"
authorWilliam Lallemand <wlallemand@haproxy.com>
Mon, 19 Jan 2026 12:22:10 +0000 (13:22 +0100)
committerWilliam Lallemand <wlallemand@haproxy.com>
Mon, 19 Jan 2026 12:22:10 +0000 (13:22 +0100)
Previous patch 0a4642 ("CI: github: define the right quictls version in
each jobs") didn't use the right syntax for string matching.

.github/workflows/vtest.yml

index 14e4a67761e79b30ecaddc08b2a2b9314b72c94f..d14b071c94d99e21251226506b21f2e271629187 100644 (file)
@@ -57,7 +57,7 @@ jobs:
         echo "key=$(echo ${{ matrix.name }} | sha256sum | awk '{print $1}')" >> $GITHUB_OUTPUT
 
     - name: Cache SSL libs
-      if: ${{ matrix.ssl && matrix.ssl != 'stock' && matrix.ssl != 'BORINGSSL=yes' && 'QUICTLS' not in matrix.ssl }}
+      if: ${{ matrix.ssl && matrix.ssl != 'stock' && matrix.ssl != 'BORINGSSL=yes' && !contains(matrix.ssl, 'QUICTLS') }}
       id: cache_ssl
       uses: actions/cache@v4
       with: