Signed-off-by: Josh Steadmon <[email protected]>
---
ci/run-build-and-tests.sh | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/ci/run-build-and-tests.sh b/ci/run-build-and-tests.sh
index cdd2913440..0707c90549 100755
--- a/ci/run-build-and-tests.sh
+++ b/ci/run-build-and-tests.sh
@@ -14,6 +14,8 @@ make
make test
if test "$jobname" = "linux-gcc"
then
+ make -C t/trace_schema_validator
+ export GIT_TRACE2_EVENT=$(mktemp)
export GIT_TEST_SPLIT_INDEX=yes
export GIT_TEST_FULL_IN_PACK_ARRAY=true
export GIT_TEST_OE_SIZE=10
@@ -21,6 +23,9 @@ then
export GIT_TEST_COMMIT_GRAPH=1
export GIT_TEST_MULTI_PACK_INDEX=1
make test
+ t/trace_schema_validator/trace_schema_validator \
+ --trace2_event_file=${GIT_TRACE2_EVENT} \
+ --schema_file=t/trace_schema_validator/strict_schema.json
fi
check_unignored_build_artifacts
--
2.22.0.510.g264f2c817a-goog