From babbb437c293e2ceddb76daa2921946ea0f4f2e4 Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Fri, 1 May 2020 13:27:20 +0200 Subject: [PATCH] .gitlab-ci.yml: Use x86_64 build chain to cross build 64bit executables This error was discovered when working with the merge request dbus/dbus!158. (cherry picked from commit 74717a9c0cec5879f405b4e439aded80c2b6dc7f) --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a7cdb3f..f2e7265 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -107,7 +107,7 @@ x86_64-w64-mingw32: stage: build image: "debian:buster-slim" variables: - ci_host: "i686-w64-mingw32" + ci_host: "x86_64-w64-mingw32" script: *script x86_64-w64-mingw32-cmake-debug: @@ -116,7 +116,7 @@ x86_64-w64-mingw32-cmake-debug: image: "debian:buster-slim" variables: ci_buildsys: "cmake" - ci_host: "i686-w64-mingw32" + ci_host: "x86_64-w64-mingw32" ci_variant: "debug" script: *script -- 2.7.4