1
0
mirror of https://git.tukaani.org/xz.git synced 2025-04-23 08:00:54 +00:00

CI: Add Doxygen dependency to CMake builds on Ubuntu and macOS

This commit is contained in:
Lasse Collin 2025-04-22 16:21:50 +03:00
parent d8e9dc63a6
commit 9048e72494
No known key found for this signature in database
GPG Key ID: 38EE757D69184620

View File

@ -51,12 +51,12 @@ jobs:
if: ${{ matrix.os == 'ubuntu-latest' && matrix.build_system == 'cmake' }} if: ${{ matrix.os == 'ubuntu-latest' && matrix.build_system == 'cmake' }}
run: | run: |
sudo apt-get update 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 # Install CMake on Mac
- name: Install Dependencies - name: Install Dependencies
if: ${{ matrix.os == 'macos-latest' && matrix.build_system == 'cmake' }} if: ${{ matrix.os == 'macos-latest' && matrix.build_system == 'cmake' }}
run: brew install cmake gettext run: brew install cmake gettext doxygen
################## ##################
# Build and Test # # Build and Test #