Skip to content

Commit

Permalink
test-build.yml: Fix test-docs-build
Browse files Browse the repository at this point in the history
Set TARGETS and EXTRA_TARGETS to empty to skip attempted rebuild.
  • Loading branch information
KrystalDelusion committed May 13, 2024
1 parent 1af170a commit ec4e9b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ jobs:
runs-on: [self-hosted, linux, x64]
needs: [test-docs, pre_docs_job]
if: needs.pre_docs_job.outputs.should_skip != 'true'
env:
CC: clang
strategy:
matrix:
docs-target: [html, latexpdf]
Expand All @@ -210,4 +212,4 @@ jobs:
- name: Build docs
shell: bash
run: |
make docs DOC_TARGET=${{ matrix.docs-target }}
make docs DOC_TARGET=${{ matrix.docs-target }} TARGETS= EXTRA_TARGETS= CONFIG=$CC

0 comments on commit ec4e9b0

Please sign in to comment.