From e3f69829de3f4511e98c31181de1e8b38c85c531 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Fri, 17 Oct 2025 10:25:35 -0400 Subject: [PATCH] .github: run old kernels first --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f97c35ff..5a016be8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -327,7 +327,7 @@ jobs: sudo udevadm control --reload-rules sudo udevadm trigger --name-match=kvm || true # kvm is not available on arm64. - find test/.tmp -name '*.deb' -print0 | xargs -t -0 \ + find test/.tmp -name '*.deb' -print0 | sort -Vz | xargs -t -0 \ cargo xtask integration-test vm --cache-dir test/.tmp \ --github-api-token ${{ secrets.GITHUB_TOKEN }} @@ -338,7 +338,7 @@ jobs: CARGO_TARGET_X86_64_UNKNOWN_LINUX_MUSL_LINKER: x86_64-linux-musl-gcc run: | set -euxo pipefail - find test/.tmp -name '*.deb' -print0 | xargs -t -0 \ + find test/.tmp -name '*.deb' -print0 | sort -Vz | xargs -t -0 \ cargo xtask integration-test vm --cache-dir test/.tmp \ --github-api-token ${{ secrets.GITHUB_TOKEN }}