Cirrus-CI: Run check-ldirs in include/

Check that LDIRS defined in include/Makefile actually exist.

Reviewed by:	emaste
Sponsored by:	DARPA
Differential Revision:	https://reviews.freebsd.org/D39681
This commit is contained in:
Brooks Davis 2023-04-19 16:58:54 +01:00
parent b4373ce309
commit 8cee0c9ae9

View File

@ -60,6 +60,10 @@ task:
- make sysent
- if ! git diff --exit-code; then printf "\n>>> Generated sysent files not updated, run make sysent <<<\n"; false; fi
include_ldirs_script:
# Check that includes/Makefile refers to existing directories
- if ! make -C include/ check-ldirs; then printf "\n>>> include/Makefile lists nonexistant directories <<<\n"; false; fi
post_script:
- df -m
- du -m -s /usr/obj