diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-05 20:16:12 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-05 20:16:12 +0100 |
| commit | 3fa099700719caa9a869508f0bd45df82b8e7a07 (patch) | |
| tree | c04a90efdd076949dc977200c3077de1d2fa0390 /.github/workflows | |
| parent | deb680a10afa2cf3c285eee5e76655b52f00cb7e (diff) | |
[FIX] workflows file patches.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github/workflows')
| -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}} - + |
