summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2022-04-23 16:09:21 +0100
committerAlexander Larsson <alexander.larsson@gmail.com>2022-05-03 13:56:14 +0200
commitcb73e098ef3971dd1a0ea20a6f82bdc532502b68 (patch)
tree923904a67b4ce751032ccd1f2cd405cad60ff338 /.github
parentcbb61761e7b018816c5030898941334a040e9e95 (diff)
downloadflatpak-cb73e098ef3971dd1a0ea20a6f82bdc532502b68.tar.gz
workflows: Move gtk-doc enablement from clang to valgrind build
We want to have gtk-doc enabled in the build that will run `make distcheck`, but the clang/CodeQL build seems like a poor fit for that, since it runs twice (for C and Python) and has extra instrumentation. Move it to the build where we will run tests under valgrind, which is already somewhat slow. Signed-off-by: Simon McVittie <smcv@collabora.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/check.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
index 06d50635..41517d8d 100644
--- a/.github/workflows/check.yml
+++ b/.github/workflows/check.yml
@@ -128,7 +128,7 @@ jobs:
with:
submodules: true
- name: configure
- run: ./autogen.sh --enable-gtk-doc --enable-gtk-doc-html
+ run: ./autogen.sh
env:
CC: clang
CFLAGS: -Werror=unused-variable
@@ -172,7 +172,7 @@ jobs:
run: |
mkdir _build
pushd _build
- ../configure
+ ../configure --enable-gtk-doc --enable-gtk-doc-html
popd
env:
CFLAGS: -O2