From 969a3652788bd7734960b13c02fafec6e232c719 Mon Sep 17 00:00:00 2001 From: Anthony Romaniello <66272872+aromanielloNTIA@users.noreply.github.com> Date: Tue, 14 Jan 2025 13:49:40 -0500 Subject: [PATCH 1/2] Clone extern/test-data submodule by default --- .github/workflows/ctest.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ctest.yml b/.github/workflows/ctest.yml index 363c39c..af5d14b 100644 --- a/.github/workflows/ctest.yml +++ b/.github/workflows/ctest.yml @@ -45,9 +45,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Clone required submodules + - name: Clone required submodules # TODO-TEMPLATE: Check required submodules and update if needed run: | git submodule init extern/googletest + git submodule init extern/test-data git submodule update - name: Install CMake From 57c11b43cf37df697af28c84b78de58d582bd3e2 Mon Sep 17 00:00:00 2001 From: Anthony Romaniello <66272872+aromanielloNTIA@users.noreply.github.com> Date: Tue, 14 Jan 2025 13:50:47 -0500 Subject: [PATCH 2/2] Remove test-data submodule from template, keep instructions --- .github/workflows/ctest.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ctest.yml b/.github/workflows/ctest.yml index af5d14b..5701642 100644 --- a/.github/workflows/ctest.yml +++ b/.github/workflows/ctest.yml @@ -45,10 +45,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Clone required submodules # TODO-TEMPLATE: Check required submodules and update if needed + - name: Clone required submodules # TODO-TEMPLATE: Add test-data submodule here, if needed run: | git submodule init extern/googletest - git submodule init extern/test-data git submodule update - name: Install CMake