From b040c5350cfd67501948df021696112e52a847c0 Mon Sep 17 00:00:00 2001 From: teejusb <5017202+teejusb@users.noreply.github.com> Date: Tue, 30 Apr 2024 17:11:02 -0700 Subject: [PATCH] CI needs to run --recursive for the updated MbedTLS --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c63607c5e..95d5605989 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Checkout submodules - run: git submodule update --init + run: git submodule update --init --recursive - name: Install dependencies run: sudo apt-get update && sudo apt-get install -y libasound2-dev @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Checkout submodules - run: git submodule update --init + run: git submodule update --init --recursive - name: Install dependencies run: brew install nasm @@ -56,7 +56,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Checkout submodules - run: git submodule update --init + run: git submodule update --init --recursive - name: Install dependencies run: brew install nasm @@ -71,7 +71,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Checkout submodules - run: git submodule update --init + run: git submodule update --init --recursive - name: Configure run: cmake -B build - name: Build