CI: Add gettext as a dependency to CMake builds

This commit is contained in:
Lasse Collin 2024-07-02 19:39:05 +03:00
parent 24f0f7e399
commit ec6157570e
1 changed files with 2 additions and 2 deletions

View File

@ -49,12 +49,12 @@ jobs:
if: ${{ matrix.os == 'ubuntu-latest' && matrix.build_system == 'cmake' }}
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake musl-tools
sudo apt-get install -y build-essential cmake gettext musl-tools
# Install CMake on Mac
- name: Install Dependencies
if: ${{ matrix.os == 'macos-latest' && matrix.build_system == 'cmake' }}
run: brew install cmake
run: brew install cmake gettext
##################
# Build and Test #