]> git.ipfire.org Git - thirdparty/xz.git/commitdiff
CI: Add Doxygen dependency to CMake builds on Ubuntu and macOS
authorLasse Collin <lasse.collin@tukaani.org>
Tue, 22 Apr 2025 13:21:50 +0000 (16:21 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Tue, 22 Apr 2025 16:00:19 +0000 (19:00 +0300)
.github/workflows/ci.yml

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