From 31fadf42eb400485873a99540a24ba7deb2f5191 Mon Sep 17 00:00:00 2001 From: Peter Harper <77111776+peterharperuk@users.noreply.github.com> Date: Thu, 1 May 2025 16:31:35 +0100 Subject: [PATCH] Revert "Add --recursive flag to git submodule cmd (#2416)" (#2445) This reverts commit 5592322465b449ef01ca5b4290f2f03fdff71381. --- .github/workflows/macOS.yml | 2 +- .github/workflows/multi-gcc.yml | 2 +- .github/workflows/scripts/generate_multi_gcc_workflow.py | 2 +- .github/workflows/windows.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml index 63048ee7..42282672 100644 --- a/.github/workflows/macOS.yml +++ b/.github/workflows/macOS.yml @@ -19,7 +19,7 @@ jobs: - name: Checkout repo uses: actions/checkout@v4 - name: Checkout submodules - run: git submodule update --init --recursive + run: git submodule update --init - name: Install dependencies run: | brew install cmake diff --git a/.github/workflows/multi-gcc.yml b/.github/workflows/multi-gcc.yml index 73f42fd3..f2006245 100644 --- a/.github/workflows/multi-gcc.yml +++ b/.github/workflows/multi-gcc.yml @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@v4 - name: Checkout submodules - run: git submodule update --init --recursive + run: git submodule update --init - name: Host Release run: cd ${{github.workspace}}; mkdir -p build; rm -rf build/*; cd build; cmake ../ -DPICO_SDK_TESTS_ENABLED=1 -DCMAKE_BUILD_TYPE=Release -DPICO_NO_PICOTOOL=1 -DPICO_PLATFORM=host; make --output-sync=target --no-builtin-rules --no-builtin-variables -j$(nproc) diff --git a/.github/workflows/scripts/generate_multi_gcc_workflow.py b/.github/workflows/scripts/generate_multi_gcc_workflow.py index 81980f65..7e36f63a 100755 --- a/.github/workflows/scripts/generate_multi_gcc_workflow.py +++ b/.github/workflows/scripts/generate_multi_gcc_workflow.py @@ -94,7 +94,7 @@ jobs: uses: actions/checkout@v4 - name: Checkout submodules - run: git submodule update --init --recursive + run: git submodule update --init - name: Host Release run: cd ${{github.workspace}}; mkdir -p build; rm -rf build/*; cd build; cmake ../ -DPICO_SDK_TESTS_ENABLED=1 -DCMAKE_BUILD_TYPE=Release -DPICO_NO_PICOTOOL=1 -DPICO_PLATFORM=host; make --output-sync=target --no-builtin-rules --no-builtin-variables -j$(nproc) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 64be455a..ea4394af 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -19,7 +19,7 @@ jobs: - name: Checkout repo uses: actions/checkout@v4 - name: Checkout submodules - run: git submodule update --init --recursive + run: git submodule update --init - name: Install dependencies run: choco install .github/workflows/choco_packages.config