From 61c9e989fe27cbe38ee7b0267526235d31ee552e Mon Sep 17 00:00:00 2001 From: Driss Guessous <32754868+drisspg@users.noreply.github.com> Date: Tue, 19 Mar 2024 12:51:41 -0700 Subject: [PATCH] Update cmake-single-platform.yml --- .github/workflows/cmake-single-platform.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 40901cb..739f762 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -14,9 +14,17 @@ jobs: runs-on: ubuntu-latest container: image: nvidia/cuda:12.3.2-devel-ubuntu22.04 - + steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3 + with: + # Fetches all history for all tags and branches, necessary for a complete submodule update + fetch-depth: 0 + + - name: Initialize and Update Git Submodules + run: | + git submodule sync + git submodule update --init --recursive - name: Install CMake run: |