@@ -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
Signed-off-by: Josh Steadmon <steadmon@google.com> --- ci/run-build-and-tests.sh | 5 +++++ 1 file changed, 5 insertions(+)