diff --git a/.github/workflows/integration-windows.yaml b/.github/workflows/integration-windows.yaml index bb1f68158..1010ab73e 100644 --- a/.github/workflows/integration-windows.yaml +++ b/.github/workflows/integration-windows.yaml @@ -39,7 +39,7 @@ jobs: run: | set -eufo pipefail mkdir $HOME/workloads - az storage blob download --container-name private-images --file "$HOME/workloads/windows-server-2022-amd64-2.raw" --name windows-server-2022-amd64-2.raw --connection-string "${{ secrets.CH_PRIVATE_IMAGES }}" + az storage blob download --container-name private-images --file "$HOME/workloads/windows-server-2025-amd64-1.raw" --name windows-server-2025-amd64-1.raw --connection-string "${{ secrets.CH_PRIVATE_IMAGES }}" - name: Run Windows guest integration tests if: ${{ github.event_name != 'pull_request' }} timeout-minutes: 15 diff --git a/scripts/run_integration_tests_windows_x86_64.sh b/scripts/run_integration_tests_windows_x86_64.sh index 56d41c166..6b358c5c2 100755 --- a/scripts/run_integration_tests_windows_x86_64.sh +++ b/scripts/run_integration_tests_windows_x86_64.sh @@ -13,7 +13,7 @@ test_features="" if [ "$hypervisor" = "mshv" ]; then test_features="--features mshv" fi -WIN_IMAGE_FILE="/root/workloads/windows-server-2022-amd64-2.raw" +WIN_IMAGE_FILE="/root/workloads/windows-server-2025-amd64-1.raw" WORKLOADS_DIR="/root/workloads" diff --git a/test_infra/src/lib.rs b/test_infra/src/lib.rs index ba10cd5b5..e32ee791f 100644 --- a/test_infra/src/lib.rs +++ b/test_infra/src/lib.rs @@ -2412,7 +2412,7 @@ pub mod x86_64 { "jammy-server-cloudimg-amd64-custom-20241017-0-backing-uncompressed.qcow2"; pub const JAMMY_IMAGE_NAME_QCOW2_BACKING_RAW_FILE: &str = "jammy-server-cloudimg-amd64-custom-20241017-0-backing-raw.qcow2"; - pub const WINDOWS_IMAGE_NAME: &str = "windows-server-2022-amd64-2.raw"; + pub const WINDOWS_IMAGE_NAME: &str = "windows-server-2025-amd64-1.raw"; pub const OVMF_NAME: &str = "CLOUDHV.fd"; pub const GREP_SERIAL_IRQ_CMD: &str = "grep -c 'IO-APIC.*ttyS0' /proc/interrupts || true"; }