Uploaded image for project: 'AI Platform Core Components'
  1. AI Platform Core Components
  2. AIPCC-5082

RHAIIS pipeline renovate fails to find vllm tags

    • CI/CD Sprint 15, CI/CD Sprint 16, CI/CD Sprint 17

      Our current extractVersionTemplate is: ^midstream-(?:cuda-v|rocm-v|v)(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\.(?<build>
      d+)$

      The issue is that this regex expects exactly four version numbers after the prefix, and the string must end immediately after the fourth number (due to the $ anchor at the end).

      • midstream-rocm-v0.10.0.2 matches because it has exactly four version parts (0, 10, 0, 2).
      • midstream-cuda-v0.10.1.1.2 fails because it has five version parts. The regex will match up to the fourth number (.1), but then it will fail because it encounters an additional .2 before the end of the string.

              xdong@redhat.com Xiyang Dong
              emacchi@redhat.com Emilien Macchi
              Giulia Naponiello
              Klara's Team
              Votes:
              0 Vote for this issue
              Watchers:
              5 Start watching this issue

                Created:
                Updated:
                Resolved: