We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0938cea commit 787b784Copy full SHA for 787b784
.github/workflows/ci.yml
@@ -59,7 +59,7 @@ jobs:
59
60
# Run OpenVX Conformance tests
61
- name: OpenVX Conformance Tests
62
- run: ./test_vx_conformance.sh
+ run: DEBUG=1 ./test_vx_conformance.sh
63
64
# (Optional) Linting or Formatting
65
# - name: Run Linter
test_vx_conformance.sh
@@ -48,7 +48,12 @@ cmake \
48
cmake --build .
49
50
# Run the conformance test suite
51
-./bin/vx_test_conformance
+if [[ "$DEBUG" == "1" ]]; then
52
+ echo "Running under GDB since CI is set"
53
+ gdb -batch -ex "run" -ex "bt" --args ./bin/vx_test_conformance
54
+else
55
+ ./bin/vx_test_conformance
56
+fi
57
58
# Clean up
cd $TARGET_DIR
0 commit comments