Skip to content

Commit bb64932

Browse files
author
CI Bot
committed
Fix: Add missing .gitmodules and enable submodule checkout in CI
The OpenVX-cts directory was configured as a submodule but the .gitmodules file was never committed. Additionally, the CI workflow was not initializing submodules during checkout. This commit: - Adds .gitmodules with proper configuration for OpenVX-cts submodule - Updates CI workflow to use submodules: recursive for checkout action Fixes the CI failure where OpenVX-cts directory was empty during build.
1 parent d6fc043 commit bb64932

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/openvx-conformance.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
uses: actions/checkout@v4
3232
with:
3333
fetch-depth: 0
34+
submodules: recursive
3435

3536
- name: Debug directory structure
3637
run: |

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "OpenVX-cts"]
2+
path = OpenVX-cts
3+
url = https://github.com/KhronosGroup/OpenVX-cts.git

0 commit comments

Comments
 (0)