From 42a55fbddc914acc6cb311d011a04557d7f729b5 Mon Sep 17 00:00:00 2001 From: Richard Date: Thu, 26 Sep 2024 09:29:52 -0600 Subject: [PATCH] Temporarily disable debug CI builds See #140 --- .github/workflows/cmake.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 64565261c..aaddfa2c0 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -54,7 +54,11 @@ jobs: needs: html-docs strategy: matrix: - preset: [ debug, release ] + # The Windows debug build hangs when compiling the docs with id makedoc ... + # I can't reproduce this locally, but it's causing all CI jobs to fail. + # Temporary disable the debug jobs until this can be root caused. + # preset: [ debug, release ] + preset: [ release ] # macos-latest is disabled for now os: [ ubuntu-latest, windows-latest ] runs-on: ${{matrix.os}}