From 65ad09028d4fbc7251339b9cc494f0976b7600a0 Mon Sep 17 00:00:00 2001 From: Owen Avery Date: Tue, 17 Dec 2024 18:23:57 -0500 Subject: [PATCH] Explicitly install gettext for macos CI ChangeLog: * .github/workflows/ccpp.yml: Add gettext to brew install list. Signed-off-by: Owen Avery --- .github/workflows/ccpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index dfb090617f5e..fab7f6e88a9d 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -381,7 +381,7 @@ jobs: - name: Install Deps run: | - brew install dejagnu mpfr libmpc gmp; + brew install dejagnu mpfr libmpc gmp gettext; # install Rust directly using rustup curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0;