Upgrade the version of CockroachDB we test against.

Change-Id: I0eb3cf5e7803b9cc281fd07dbc7fcb73498b05fd
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/307018
Reviewed-by: Eric Boren <borenet@google.com>
Commit-Queue: Joe Gregorio <jcgregorio@google.com>
This commit is contained in:
Joe Gregorio 2020-07-30 23:52:43 -04:00 committed by Skia Commit-Bot
parent 2ebb6ba900
commit fc8ba49c06
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
2
3

View File

@ -15,7 +15,7 @@ import subprocess
import utils
URL = "https://binaries.cockroachdb.com/cockroach-v19.2.4.linux-amd64.tgz"
URL = "https://binaries.cockroachdb.com/cockroach-v20.1.3.linux-amd64.tgz"
def create_asset(target_dir):
"""Create the asset."""
@ -24,7 +24,7 @@ def create_asset(target_dir):
p2 = subprocess.Popen(["tar", "-xzf" "-"], stdin=p1.stdout)
p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits.
_,_ = p2.communicate()
shutil.move('./cockroach-v19.2.4.linux-amd64/cockroach', target_dir)
shutil.move('./cockroach-v20.1.3.linux-amd64/cockroach', target_dir)
def main():