Skip to content

Commit 7b5b5eb

Browse files
authored
[Infra] Use tuna mirror instead of baidu mirror (#6708)
1 parent 4430788 commit 7b5b5eb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci_scripts/gendoc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export DOCROOT
1717
# PADDLE_WHL is defined in ci_start.sh
1818
pip3 list --disable-pip-version-check | grep paddlepaddle > /dev/null
1919
if [ $? -ne 0 ] ; then
20-
pip3 install --no-cache-dir -i https://mirror.baidu.com/pypi/simple ${PADDLE_WHL}
20+
pip3 install --no-cache-dir -i https://pypi.tuna.tsinghua.edu.cn/simple ${PADDLE_WHL}
2121
fi
2222

2323

ci_scripts/utils.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function get_paddle_pr_num_from_docs_pr_info(){
7979
function install_paddle() {
8080
# try to download paddle, and install
8181
# PADDLE_WHL is defined in ci_start.sh
82-
pip install --no-cache-dir -i https://mirror.baidu.com/pypi/simple ${PADDLE_WHL} 1>nul
82+
pip install --no-cache-dir -i https://pypi.tuna.tsinghua.edu.cn/simple ${PADDLE_WHL} 1>nul
8383
# if failed, build paddle
8484
if [ $? -ne 0 ];then
8585
build_paddle

0 commit comments

Comments
 (0)