From a7424b9952eccf63e600eed24b0b41fe10cd3c7f Mon Sep 17 00:00:00 2001
From: Alam Ed Arias <alam@srb2.org>
Date: Sun, 2 Mar 2025 19:30:38 -0500
Subject: [PATCH] GitLab CI: use :, not = for variables

---
 .gitlab/ci/jobs/windows-x64.yml | 2 +-
 .gitlab/ci/jobs/windows-x86.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab/ci/jobs/windows-x64.yml b/.gitlab/ci/jobs/windows-x64.yml
index 93f49665f0..d8824e185f 100644
--- a/.gitlab/ci/jobs/windows-x64.yml
+++ b/.gitlab/ci/jobs/windows-x64.yml
@@ -35,7 +35,7 @@ Windows x64:
 
   variables:
     PREFIX: x86_64-w64-mingw32
-    VCPKG_DEFAULT_TRIPLET=x64-mingw-static
+    VCPKG_DEFAULT_TRIPLET: x64-mingw-static
 
   script:
     - |
diff --git a/.gitlab/ci/jobs/windows-x86.yml b/.gitlab/ci/jobs/windows-x86.yml
index dcb87b099b..f375042d7a 100644
--- a/.gitlab/ci/jobs/windows-x86.yml
+++ b/.gitlab/ci/jobs/windows-x86.yml
@@ -31,7 +31,7 @@ Windows x86:
 
   variables:
     PREFIX: i686-w64-mingw32
-    VCPKG_DEFAULT_TRIPLET=x86-mingw-static
+    VCPKG_DEFAULT_TRIPLET: x86-mingw-static
 
   script:
     - |
-- 
GitLab