From c48197fa712e6011c452326957006c6030d27f99 Mon Sep 17 00:00:00 2001 From: Faizan Qazi Date: Tue, 13 Sep 2022 00:46:18 -0400 Subject: [PATCH] ci: fix validation for mixed version schema change corpus Informs: #86381 Previously, the command for validating the mixed version corpus was invalid. This patch fixes the validation command to address this, so the mixed version corpus is automatically uploaded. Release note: None --- .../cockroach/nightlies/sqllogic_corpus_nightly_impl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/teamcity/cockroach/nightlies/sqllogic_corpus_nightly_impl.sh b/build/teamcity/cockroach/nightlies/sqllogic_corpus_nightly_impl.sh index fb8ae718d429..90c4412d8783 100755 --- a/build/teamcity/cockroach/nightlies/sqllogic_corpus_nightly_impl.sh +++ b/build/teamcity/cockroach/nightlies/sqllogic_corpus_nightly_impl.sh @@ -143,7 +143,7 @@ done # Any generated corpus should be validated on the current version first, which # indicates we can replay it on the same version. -$BAZEL_BIN/pkg/cmd/bazci/bazci_/bazci test --config=ci \ +$BAZEL_BIN/pkg/cmd/bazci/bazci_/bazci test -- --config=ci \ //pkg/sql/schemachanger/corpus:corpus_test \ --test_arg=--declarative-corpus=$ARTIFACTS_DIR/corpus-mixed \ --test_filter='^TestValidateCorpuses$' \