From 49aff2c6dbfaea055edb7300e6f169349e15cc0d Mon Sep 17 00:00:00 2001 From: "Ronald Joseph Legarski, Jr." <98552991+solveforceapp@users.noreply.github.com> Date: Fri, 27 Jun 2025 20:17:23 -0700 Subject: [PATCH] Initialize submodules in CI --- .github/workflows/c-cpp.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 6a9c312e..02f5580b 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -13,11 +13,7 @@ jobs: steps: - uses: actions/checkout@v4 - - name: configure - run: ./configure - - name: make - run: make - - name: make check - run: make check - - name: make distcheck - run: make distcheck + - name: Fetch submodules + run: git submodule update --init --recursive + - name: Build libHttpClient + run: bash Build/libHttpClient.Linux/libHttpClient_Linux.bash -c Release