1*1c12ee1eSDan Willemsen#!/bin/bash 2*1c12ee1eSDan Willemsen# Copyright 2019 The Go Authors. All rights reserved. 3*1c12ee1eSDan Willemsen# Use of this source code is governed by a BSD-style 4*1c12ee1eSDan Willemsen# license that can be found in the LICENSE file. 5*1c12ee1eSDan Willemsen 6*1c12ee1eSDan Willemsencd "$(git rev-parse --show-toplevel)" 7*1c12ee1eSDan Willemsenmkdir -p .cache/benchdata 8*1c12ee1eSDan Willemsencd .cache/benchdata 9*1c12ee1eSDan Willemsen 10*1c12ee1eSDan Willemsen# Download small benchmark datasets. 11*1c12ee1eSDan WillemsenPROTOBUF_VERSION=v3.11.4 12*1c12ee1eSDan Willemsencurl -s -O https://raw.githubusercontent.com/protocolbuffers/protobuf/$PROTOBUF_VERSION/benchmarks/datasets/google_message1/proto2/dataset.google_message1_proto2.pb 13*1c12ee1eSDan Willemsencurl -s -O https://raw.githubusercontent.com/protocolbuffers/protobuf/$PROTOBUF_VERSION/benchmarks/datasets/google_message1/proto3/dataset.google_message1_proto3.pb 14*1c12ee1eSDan Willemsencurl -s -O https://raw.githubusercontent.com/protocolbuffers/protobuf/$PROTOBUF_VERSION/benchmarks/datasets/google_message2/dataset.google_message2.pb 15*1c12ee1eSDan Willemsen 16*1c12ee1eSDan Willemsen# Download large benchmark datasets. 17*1c12ee1eSDan Willemsencurl -s https://storage.googleapis.com/protobuf_opensource_benchmark_data/datasets.tar.gz | tar zx 18