From 4788d684da750d3ef1bfb86e7f8c6747d2634acd Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Mon, 15 Apr 2024 12:00:34 -0600 Subject: [PATCH] github-ci: test make after clean without cbindgen Modify the CentOS 9 Stream build to not have cbdingen available, as its already building from the dist. But add a "make clean" followed by a "make" to test that it still builds after a clean. --- .github/workflows/builds.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 297b281dff..cf296200dc 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -551,7 +551,6 @@ jobs: autoconf \ automake \ cargo-vendor \ - cbindgen \ diffutils \ numactl-devel \ dpdk-devel \ @@ -610,6 +609,9 @@ jobs: - run: python3 ./suricata-verify/run.py -q --debug-failed - run: suricata-update -V - run: suricatasc -h + # Test build after clean. + - run: make clean + - run: make -j ${{ env.CPUS }} centos-stream8: name: CentOS Stream 8