0001-Use-windows-VMs-instead-of-windows-containers.patch
text/plain
Filename: 0001-Use-windows-VMs-instead-of-windows-containers.patch
Type: text/plain
Part: 0
Patch
Format: format-patch
Series: patch 0001
Subject: Use windows VMs instead of windows containers
| File | + | − |
|---|---|---|
| .cirrus.yml | 8 | 4 |
From 6981319d054f0736e474bc315ab094094d159979 Mon Sep 17 00:00:00 2001
From: Nazir Bilal Yavuz <byavuz81@gmail.com>
Date: Tue, 10 Jan 2023 13:58:39 +0300
Subject: [PATCH] Use windows VMs instead of windows containers
---
.cirrus.yml | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/.cirrus.yml b/.cirrus.yml
index 69837bcd5a..5700b8cd66 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -549,8 +549,10 @@ task:
depends_on: SanityCheck
only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*windows.*'
- windows_container:
- image: $CONTAINER_REPO/windows_ci_vs_2019:latest
+ compute_engine_instance:
+ image_project: $IMAGE_PROJECT
+ image: family/pg-ci-windows-ci-vs-2019
+ platform: windows
cpu: $CPUS
memory: 4G
@@ -589,8 +591,10 @@ task:
# otherwise it'll be sorted before other tasks
depends_on: SanityCheck
- windows_container:
- image: $CONTAINER_REPO/windows_ci_mingw64:latest
+ compute_engine_instance:
+ image_project: $IMAGE_PROJECT
+ image: family/pg-ci-windows-ci-mingw64
+ platform: windows
cpu: $CPUS
memory: 4G
--
2.25.1