From ddaa92bbe9b4681c7d5bd7a004a76a420f6f47c3 Mon Sep 17 00:00:00 2001 From: Faizan Qazi Date: Tue, 13 Sep 2022 04:46:18 +0000 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$' \