Merge pull request #5191 from harfbuzz/ci-exe-wrapper
Some checks failed
arm / arm-none-eabi (push) Waiting to run
configs-ci / build (push) Waiting to run
fontations / build (push) Waiting to run
linux-ci / build (push) Waiting to run
macos-ci / build (push) Waiting to run
msvc / msvc-2019-amd64 (push) Waiting to run
msvc / msvc-2019-x86 (push) Waiting to run
msys2 / MINGW32 (push) Waiting to run
msys2 / MINGW64 (push) Waiting to run
Scorecard supply-chain security / Scorecard analysis (push) Failing after 7s

Revert "[ci] Don’t set exe_wrapper in the cross files"
This commit is contained in:
Behdad Esfahbod 2025-03-22 20:36:59 -06:00 committed by GitHub
commit f48d641483
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 11 additions and 4 deletions

View file

@ -19,4 +19,4 @@ objcopy = 'i686-w64-mingw32-objcopy'
strip = 'i686-w64-mingw32-strip'
windres = 'i686-w64-mingw32-windres'
pkg-config = 'i686-w64-mingw32-pkg-config'
#exe_wrapper = 'wine'
exe_wrapper = 'wine'

View file

@ -19,4 +19,4 @@ objcopy = 'x86_64-w64-mingw32-objcopy'
strip = 'x86_64-w64-mingw32-strip'
windres = 'x86_64-w64-mingw32-windres'
pkg-config = 'x86_64-w64-mingw32-pkg-config'
#exe_wrapper = 'wine'
exe_wrapper = 'wine'

View file

@ -132,12 +132,16 @@ 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: |
export LANG=en_US.UTF-8
python3 -m venv venv
source venv/bin/activate
pip3 install meson==1.6.0
bash .ci/build-win.sh 32
meson devenv -Cbuild-win32 meson test --print-errorlogs --suite=harfbuzz
- store_artifacts:
path: harfbuzz-win32.zip
- persist_to_workspace:
@ -158,12 +162,15 @@ 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: |
export LANG=en_US.UTF-8
python3 -m venv venv
source venv/bin/activate
pip3 install meson==1.6.0
bash .ci/build-win.sh 64
meson devenv -Cbuild-win64 meson test --print-errorlogs --suite=harfbuzz
- store_artifacts:
path: harfbuzz-win64.zip
- persist_to_workspace:

Binary file not shown.