From 5e56f01612e3f64510f43f0ffe337545f7ebb3e7 Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Wed, 11 Sep 2024 08:56:43 -0600 Subject: [PATCH] Use macOS to build documentation --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5de23974f..317d34826 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -431,14 +431,13 @@ jobs: docs: name: Documentation - runs-on: ubuntu-22.04 + runs-on: macos-14 steps: - - name: Install Linux Dependencies - run: sudo apt-get update && sudo apt-get install xorg-dev libxrandr-dev libxcursor-dev libxi-dev libudev-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev libdrm-dev libgbm-dev xvfb fluxbox && sudo apt-get remove -y libasound2 - - name: Install Doxygen - run: sudo apt-get install doxygen graphviz + run: | + brew update + brew install doxygen || true - name: Checkout uses: actions/checkout@v4