From b8dd83268a6da4d00784549a1e4f6c1f353d0c31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Wed, 9 Sep 2026 09:04:46 +0000 Subject: [PATCH] CI: Fix E2E test We forgot to remove the Torch 2.14 rc filter. --- .github/workflows/test_e2e.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test_e2e.yaml b/.github/workflows/test_e2e.yaml index b7f61aed..5c6ff041 100644 --- a/.github/workflows/test_e2e.yaml +++ b/.github/workflows/test_e2e.yaml @@ -85,8 +85,7 @@ jobs: id: variant run: | cd /tmp/${{ env.E2E_REPO_NAME }} - # NOTE: Remove Torch 2.14 grep once it is released. - VARIANT=$(nix run $GITHUB_WORKSPACE#kernel-builder -- list-variants . | grep -v torch214 | tail -1) + VARIANT=$(nix run $GITHUB_WORKSPACE#kernel-builder -- list-variants . | tail -1) echo "name=$VARIANT" >> $GITHUB_OUTPUT echo "Building variant: $VARIANT"