diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-06-01 13:36:10 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-06-01 13:40:47 +0200 |
commit | dd57684ee23f0a935b2cb54f22225edf7bad0077 (patch) | |
tree | 2210a4c9a5c64f51593a680ba5bd18fccd326313 /.github/workflows | |
parent | 4bf29248f2f5777ea8b310bc84f18d77024a2e03 (diff) |
Run make distcheck with HTML tests enabled in CI
Ensure the tarball can run the HTML when the configure flag
--enable-html-tests is set.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index de86b8f1..7f8c1793 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,6 +30,11 @@ jobs: run: | export DILLOBIN=$(readlink -f install/bin/dillo) make check || (cat test/html/test-suite.log; false) + - name: make distcheck (with HTML tests) + run: | + export DILLOBIN= + export DISTCHECK_CONFIGURE_FLAGS=--enable-html-tests + make distcheck # - name: Remove pipes # run: find test/html -type p -delete || true # - name: Archive production artifacts |