Skip to content

Commit 2b78258

Browse files
ahmadelyoussefmeta-codesync[bot]
authored andcommitted
Changing ftpmirror.gnu.org to mirrors.ocf.berkeley.edu (facebookresearch#262)
Summary: Changing ftpmirror.gnu.org to mirrors.ocf.berkeley.edu Add DCPerf's download sources to sandcastle fwdproxy allowlist Pull Request resolved: facebookresearch#262 Reviewed By: excelle08 Differential Revision: D85070055 Pulled By: ahmadelyoussef fbshipit-source-id: 102b79c07d2024230d4bf1d3b8c2f6d062c231f8
1 parent 9866dc8 commit 2b78258

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

packages/feedsim/alternative_install_feedsim_aws.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ cd "${FEEDSIM_THIRD_PARTY_SRC}"
6262
if ! [ -d "gengetopt-2.23" ]; then
6363
# Source the download retry function
6464
source "${BENCHPRESS_ROOT}/scripts/download_with_retry.sh"
65-
download_with_retry "https://ftpmirror.gnu.org/gnu/gengetopt/gengetopt-2.23.tar.xz"
65+
download_with_retry "https://mirrors.ocf.berkeley.edu/gnu/gengetopt/gengetopt-2.23.tar.xz"
6666
tar -xf "gengetopt-2.23.tar.xz"
6767
cd "gengetopt-2.23"
6868
./configure

packages/feedsim/install_feedsim.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ cd ../
9595
if ! [ -d "gengetopt-2.23" ]; then
9696
# Source the download retry function
9797
source "${BENCHPRESS_ROOT}/scripts/download_with_retry.sh"
98-
download_with_retry "https://ftpmirror.gnu.org/gnu/gengetopt/gengetopt-2.23.tar.xz"
98+
download_with_retry "https://mirrors.ocf.berkeley.edu/gnu/gengetopt/gengetopt-2.23.tar.xz"
9999
tar -xf "gengetopt-2.23.tar.xz"
100100
cd "gengetopt-2.23"
101101
./configure

packages/feedsim/install_feedsim_aarch64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ cd ../
8484
if ! [ -d "gengetopt-2.23" ]; then
8585
# Source the download retry function
8686
source "${BENCHPRESS_ROOT}/scripts/download_with_retry.sh"
87-
download_with_retry "https://ftpmirror.gnu.org/gnu/gengetopt/gengetopt-2.23.tar.xz"
87+
download_with_retry "https://mirrors.ocf.berkeley.edu/gnu/gengetopt/gengetopt-2.23.tar.xz"
8888
tar -xf "gengetopt-2.23.tar.xz"
8989
cd "gengetopt-2.23"
9090
./configure

packages/feedsim/install_feedsim_aarch64_ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ cd "${FEEDSIM_THIRD_PARTY_SRC}"
6060
if ! [ -d "gengetopt-2.23" ]; then
6161
# Source the download retry function
6262
source "${BENCHPRESS_ROOT}/scripts/download_with_retry.sh"
63-
download_with_retry "https://ftpmirror.gnu.org/gnu/gengetopt/gengetopt-2.23.tar.xz"
63+
download_with_retry "https://mirrors.ocf.berkeley.edu/gnu/gengetopt/gengetopt-2.23.tar.xz"
6464
tar -xf "gengetopt-2.23.tar.xz"
6565
cd "gengetopt-2.23"
6666
./configure

packages/feedsim/install_feedsim_ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ cd ../
9090
if ! [ -d "gengetopt-2.23" ]; then
9191
# Source the download retry function
9292
source "${BENCHPRESS_ROOT}/scripts/download_with_retry.sh"
93-
download_with_retry "https://ftpmirror.gnu.org/gnu/gengetopt/gengetopt-2.23.tar.xz"
93+
download_with_retry "https://mirrors.ocf.berkeley.edu/gnu/gengetopt/gengetopt-2.23.tar.xz"
9494
tar -xf "gengetopt-2.23.tar.xz"
9595
cd "gengetopt-2.23"
9696
./configure

packages/feedsim/third_party/src/scripts/install_centos8_deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dnf install -y cmake ninja-build flex bison git texinfo \
1515
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P)"
1616
BENCHPRESS_ROOT="$(readlink -f "$SCRIPT_DIR/../../../../..")"
1717
source "${BENCHPRESS_ROOT}/scripts/download_with_retry.sh"
18-
curl_with_retry "https://ftpmirror.gnu.org/gnu/gengetopt/gengetopt-2.23.tar.xz"
18+
curl_with_retry "https://mirrors.ocf.berkeley.edu/gnu/gengetopt/gengetopt-2.23.tar.xz"
1919
tar -xf gengetopt-2.23.tar.xz
2020
cd gengetopt-2.23
2121
./configure

packages/tao_bench/install_tao_bench_aarch64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ fi
8787

8888
# Download binutils
8989
BINUTILS_TARBALL_PATH="${FOLLY_BUILD_ROOT}/downloads/libiberty-binutils-2.42.tar.xz"
90-
BINUTILS_TARBALL_URL="https://ftpmirror.gnu.org/gnu/binutils/binutils-2.42.tar.xz"
90+
BINUTILS_TARBALL_URL="https://mirrors.ocf.berkeley.edu/gnu/binutils/binutils-2.42.tar.xz"
9191
if ! [ -f "${BINUTILS_TARBALL_PATH}" ]; then
9292
echo "Downloading libiberty-binutils-2.42.tar.xz..."
9393
source "${BENCHPRESS_ROOT}/scripts/download_with_retry.sh"

packages/tao_bench/install_tao_bench_x86_64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ fi
8383

8484
# Download binutils
8585
BINUTILS_TARBALL_PATH="${FOLLY_BUILD_ROOT}/downloads/libiberty-binutils-2.42.tar.xz"
86-
BINUTILS_TARBALL_URL="https://ftpmirror.gnu.org/gnu/binutils/binutils-2.42.tar.xz"
86+
BINUTILS_TARBALL_URL="https://mirrors.ocf.berkeley.edu/gnu/binutils/binutils-2.42.tar.xz"
8787
if ! [ -f "${BINUTILS_TARBALL_PATH}" ]; then
8888
echo "Downloading libiberty-binutils-2.42.tar.xz..."
8989
source "${BENCHPRESS_ROOT}/scripts/download_with_retry.sh"

0 commit comments

Comments
 (0)