Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
55505: build: fix builds using grep to match a string. r=pbardea a=jlinder Before: `grep -Eo` was used in a couple places in release scripts where it might not find the string being searched for, the non-zero return code wasn't handled and the script should have continued executing. Why: The release scripts were erroring out when they should have continued executing. Now: The non-zero return code is handled by adding a `|| echo""` to the commands. This was discovered by PR #54661 causing master to fail builds in Make and Publish Build. Release note: None 55516: roachtest: temporarily omit testing setting in sqlsmith r=yuzefovich a=yuzefovich Recently introduced `testing_vectorize_inject_panics` testing session variable is only supported on master branch, so we need to gate its usage based on the version. However, 21.1 version hasn't been minted yet, so we temporarily disable the setting's usage. Fixes: #55482. Release note: None Co-authored-by: James H. Linder <jamesl@cockroachlabs.com> Co-authored-by: Yahor Yuzefovich <yahor@cockroachlabs.com>
- Loading branch information