Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Write test failure on some machines because of gsutil download #1392

Merged
merged 21 commits into from
Sep 23, 2023
Merged
5 changes: 5 additions & 0 deletions perfmetrics/scripts/run_e2e_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ echo "Installing go-lang 1.21.0..."
wget -O go_tar.tar.gz https://go.dev/dl/go1.21.0.linux-${architecture}.tar.gz -q
sudo rm -rf /usr/local/go && tar -xzf go_tar.tar.gz && sudo mv go /usr/local
export PATH=$PATH:/usr/local/go/bin
# install python3-setuptools tools.
sudo apt-get install -y gcc python3-dev python3-setuptools
# Downloading composite object requires integrity checking with CRC32c in gsutil.
# it requires to install crcmod.
sudo apt install -y python3-crcmod

# Create bucket for integration tests.
# The prefix for the random string
Expand Down
13 changes: 13 additions & 0 deletions tools/cd_scripts/e2e_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ then
#install git
sudo apt install -y git

# install python3-setuptools tools.
sudo apt-get install -y gcc python3-dev python3-setuptools
# Downloading composite object requires integrity checking with CRC32c in gsutil.
# it requires to install crcmod.
sudo apt install -y python3-crcmod

#install build-essentials
sudo apt install -y build-essential
else
Expand Down Expand Up @@ -100,6 +106,13 @@ else
#install git
sudo yum -y install git

# install python3-setuptools tools and python3-pip
sudo yum -y install gcc python3-devel python3-setuptools redhat-rpm-config
sudo yum -y install python3-pip
# Downloading composite object requires integrity checking with CRC32c in gsutil.
# it requires to install crcmod.
pip3 install --require-hashes -r requirements.txt --user

#install Development tools
sudo yum -y install gcc gcc-c++ make
fi
Expand Down
14 changes: 14 additions & 0 deletions tools/cd_scripts/requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright 2023 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
crcmod
8 changes: 8 additions & 0 deletions tools/cd_scripts/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# pip-compile requirements.in
#
crcmod==1.7 --hash=sha256:dc7051a0db5f2bd48665a990d3ec1cc305a466a77358ca4492826f41f283601e
# via -r requirements.in
Loading