From fc8ae8ac3ebefdfc1eeaa7142559411b07b94d6b Mon Sep 17 00:00:00 2001 From: Daniel Serpell Date: Sun, 5 May 2024 22:32:21 -0400 Subject: [PATCH] Fixes sporadic failures in the Linux build tests. Include the submodules in the git checkout, as sometimes the github builder fails sometimes to update from the makefile. --- .github/workflows/c-cpp.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index f0d09ff..97f9356 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -13,6 +13,8 @@ jobs: steps: - uses: actions/checkout@v3 + with: + submodules: 'true' - name: make run: make -j2 - name: running testsuite