From 6d3b7f7c4606c2ff3e8f267f7c803d7c3ed0b619 Mon Sep 17 00:00:00 2001 From: Cao Yuhang Date: Mon, 3 Aug 2026 03:29:00 +0000 Subject: [PATCH] ci: extend arm64 real boot timeout --- .github/workflows/os-real-boot.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/os-real-boot.yml b/.github/workflows/os-real-boot.yml index bca8fbb545..bd2bdff98a 100644 --- a/.github/workflows/os-real-boot.yml +++ b/.github/workflows/os-real-boot.yml @@ -70,9 +70,13 @@ jobs: - name: x86_64 target: x86 subtarget: "64" + boot_timeout_s: 360 - name: aarch64 target: armsr subtarget: armv8 + # AArch64 runs entirely under TCG on GitHub-hosted x86 runners. + # ArgosFS root mount and userspace startup can exceed six minutes. + boot_timeout_s: 720 steps: - name: Checkout @@ -205,7 +209,7 @@ jobs: run: | set -euxo pipefail CAPOS_CI_ARTIFACT_DIR=ci-artifacts \ - CAPOS_CI_BOOT_TIMEOUT_S=360 \ + CAPOS_CI_BOOT_TIMEOUT_S=${{ matrix.boot_timeout_s }} \ scripts/ci/qemu-port-check.sh "${{ matrix.target }}" "${{ matrix.subtarget }}" - name: Upload diagnostics