[infra] Update cockroachdb to 20.2.8

Change-Id: I1675091468773e975f16e298e8a0f187bce24717
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/404896
Reviewed-by: Kevin Lubick <kjlubick@google.com>
This commit is contained in:
Kevin Lubick 2021-05-05 14:22:28 -04:00
parent f96cb712d7
commit 03bd60365e
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
3
4

View File

@ -15,7 +15,7 @@ import subprocess
import utils
URL = "https://binaries.cockroachdb.com/cockroach-v20.1.3.linux-amd64.tgz"
URL = "https://binaries.cockroachdb.com/cockroach-v20.2.8.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-v20.1.3.linux-amd64/cockroach', target_dir)
shutil.move('./cockroach-v20.2.8.linux-amd64/cockroach', target_dir)
def main():