From ff5a7b049a68af374d9ba36946f3a5561efb47fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9drik=20Fuoco?= Date: Wed, 13 Nov 2024 13:41:06 -0500 Subject: [PATCH] fix issue with icu4c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Cédrik Fuoco --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b19bf4a5..c31b7fc2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -342,8 +342,11 @@ jobs: python3 -m pip install --user --upgrade -r requirements.txt - name: Install Homebrew dependencies + # icu4c is needed for Qt UIC executable / AUTOUIC. + # Might be to find another way to install icu4c if the icu4c recipe disappear. run: | - brew install --quiet --formula cmake ninja readline sqlite3 xz zlib tcl-tk autoconf automake libtool python yasm clang-format black meson nasm pkg-config glew icu4c + brew install --formula cmake ninja readline sqlite3 xz zlib tcl-tk python-tk autoconf automake libtool python yasm clang-format black meson nasm pkg-config glew + brew install --formula icu4c@74 - name: Set QT_HOME if: matrix.arch-type == 'x86_64'