diff options
| -rw-r--r-- | .github/workflows/cmake-platform-debug.yml | 5 | ||||
| -rw-r--r-- | .github/workflows/cmake-platform-release.yml | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/cmake-platform-debug.yml b/.github/workflows/cmake-platform-debug.yml index 02117b2..61e2220 100644 --- a/.github/workflows/cmake-platform-debug.yml +++ b/.github/workflows/cmake-platform-debug.yml @@ -16,6 +16,9 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Configure Submodule + run: git submodule update --init + - name: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} @@ -24,5 +27,5 @@ jobs: - name: Install run: sudo cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} - + diff --git a/.github/workflows/cmake-platform-release.yml b/.github/workflows/cmake-platform-release.yml index cc1b7dc..a864482 100644 --- a/.github/workflows/cmake-platform-release.yml +++ b/.github/workflows/cmake-platform-release.yml @@ -16,6 +16,9 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Configure Submodules + run: git submodule update --init + - name: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} @@ -24,5 +27,5 @@ jobs: - name: Install run: sudo cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} - + |
