]> git.ipfire.org Git - thirdparty/xz.git/commitdiff
CI: Add gettext as a dependency to CMake builds
authorLasse Collin <lasse.collin@tukaani.org>
Tue, 2 Jul 2024 16:39:05 +0000 (19:39 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Tue, 2 Jul 2024 19:40:37 +0000 (22:40 +0300)
.github/workflows/ci.yml

index cd8e2f08e8b391b293a9c5e00aa629043ee278f5..ee017363984b4e1f046e9270f1b4338fb7d02285 100644 (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 #