scripts/tests: use the same version for storj-sim as satellites

Change-Id: If85b14a0a5af334b9547d73bc4dbe65cdd856984
This commit is contained in:
Yingrong Zhao 2020-06-05 13:16:18 -04:00
parent 943eb872d3
commit c78f88beb6
2 changed files with 4 additions and 0 deletions

View File

@ -135,7 +135,9 @@ setup_stage(){
then
mv $dest_sat_cfg_dir/satellite $dest_sat_cfg_dir/old_satellite
fi
# ln binary and copy config.yaml for desired version
ln -f $(version_dir ${sat_version})/bin/storj-sim $test_dir/bin/storj-sim
ln -f $src_sat_version_dir/bin/satellite $dest_sat_cfg_dir/satellite
cp $src_sat_cfg_dir/config.yaml $dest_sat_cfg_dir
replace_in_file "${src_sat_version_dir}" "${test_dir}" "${dest_sat_cfg_dir}/config.yaml"
@ -221,6 +223,7 @@ for version in ${unique_versions}; do
PATH=${bin_dir}:$PATH storj-sim -x --host="${STORJ_NETWORK_HOST4}" --postgres="${STORJ_SIM_POSTGRES}" --config-dir "${dir}/local-network" network setup > /dev/null 2>&1
echo "Finished setting up. ${dir}/local-network:" $(ls ${dir}/local-network)
echo "Binary shasums:"
shasum ${bin_dir}/storj-sim
shasum ${bin_dir}/satellite
shasum ${bin_dir}/storagenode
shasum ${bin_dir}/uplink

View File

@ -115,6 +115,7 @@ setup_stage(){
PATH=$test_dir/bin:$PATH dest_sat_cfg_dir=$(storj-sim network env --config-dir=${test_dir}/local-network/ SATELLITE_0_DIR)
# ln binary and copy config.yaml for desired version
ln -f $(version_dir ${sat_version})/bin/storj-sim $test_dir/bin/storj-sim
ln -f $src_sat_version_dir/bin/satellite $dest_sat_cfg_dir/satellite
cp $src_sat_cfg_dir/config.yaml $dest_sat_cfg_dir
replace_in_file "${src_sat_version_dir}" "${test_dir}" "${dest_sat_cfg_dir}/config.yaml"