From 600ace8f69ef5052bd8a65338f37e326b1b0d163 Mon Sep 17 00:00:00 2001 From: Wenju He Date: Wed, 3 Jun 2026 04:29:53 +0200 Subject: [PATCH] Skip testing in scheduled-verification for 22 and older branches Tests don't exist on old branches. This fixes recent `Run failed: Scheduled verification - main (3a300fc)` --- .github/workflows/scheduled-verification.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scheduled-verification.yml b/.github/workflows/scheduled-verification.yml index a51420469..98af544bb 100644 --- a/.github/workflows/scheduled-verification.yml +++ b/.github/workflows/scheduled-verification.yml @@ -48,4 +48,4 @@ jobs: ref_llvm: release/${{ matrix.llvm_version }}.x ref_translator: llvm_release_${{ matrix.llvm_version }}0 ref_opencl-clang: ocl-open-${{ matrix.llvm_version }}0 - run_tests: 'true' + run_tests: ${{ matrix.llvm_version >= 23 }}