From 7153e7814bcea33729aca833257b00594dae73d9 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sat, 22 Mar 2025 23:09:33 +0200 Subject: [PATCH] [circleci] Install wine on cross-compile jobs --- .circleci/config.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a2dc098ae..fbf5c0f9b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -132,7 +132,9 @@ jobs: executor: win32-executor steps: - checkout - - run: apt update && DEBIAN_FRONTEND=noninteractive apt install -y ninja-build python3 python3-pip python3-venv git g++-mingw-w64-i686 zip + - run: dpkg --add-architecture i386 + - run: apt update + - run: DEBIAN_FRONTEND=noninteractive apt install -y ninja-build python3 python3-pip python3-venv git g++-mingw-w64-i686 zip wine wine32 - run: | python3 -m venv venv source venv/bin/activate @@ -158,7 +160,8 @@ jobs: executor: win64-executor steps: - checkout - - run: apt update && DEBIAN_FRONTEND=noninteractive apt install -y ninja-build python3 python3-pip python3-venv git g++-mingw-w64-x86-64 zip + - run: apt update + - run: DEBIAN_FRONTEND=noninteractive apt install -y ninja-build python3 python3-pip python3-venv git g++-mingw-w64-x86-64 zip wine wine64 - run: | python3 -m venv venv source venv/bin/activate