File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -18,16 +18,17 @@ case "$(uname -s)" in
18
18
* ) os=Linux
19
19
esac
20
20
21
+ env
21
22
echo " PYTHON_VERSION is ${PYTHON_VERSION} "
22
23
23
24
# 1. Install conda at ./conda
24
25
if [ ! -d " ${conda_dir} " ]; then
25
26
printf " * Installing conda\n"
26
- wget -O miniconda.sh " http://repo.continuum.io/miniconda/Miniconda3-latest-${os} -x86_64.sh"
27
+ wget --quiet - O miniconda.sh " http://repo.continuum.io/miniconda/Miniconda3-latest-${os} -x86_64.sh"
27
28
bash ./miniconda.sh -b -f -p " ${conda_dir} "
28
29
eval " $( " ${conda_dir} /bin/conda" shell.bash hook) "
29
- conda update -y conda
30
- conda install -y python=" ${PYTHON_VERSION} "
30
+ conda update --quiet - y conda
31
+ conda install --quiet - y python=" ${PYTHON_VERSION} "
31
32
else
32
33
eval " $( " ${conda_dir} /bin/conda" shell.bash hook) "
33
34
fi
41
42
conda activate " ${env_dir} "
42
43
43
44
# 3. Install minimal build tools
44
- pip install cmake ninja
45
+ pip --quiet install cmake ninja
45
46
46
47
# 4. Buld codecs
47
48
mkdir -p third_party/build
Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ if [ ! -d "${conda_dir}" ]; then
20
20
printf " * Installing conda\n"
21
21
export tmp_conda=" $( echo $conda_dir | tr ' /' ' \\' ) "
22
22
export miniconda_exe=" $( echo $root_dir | tr ' /' ' \\' ) \\ miniconda.exe"
23
- curl --output miniconda.exe https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -O
23
+ curl --silent -- output miniconda.exe https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -O
24
24
" $this_dir /install_conda.bat"
25
25
unset tmp_conda
26
26
unset miniconda_exe
27
27
eval " $( " ${conda_dir} /Scripts/conda.exe" ' shell.bash' ' hook' ) "
28
- conda update -y conda
29
- conda install -y python=" $PYTHON_VERSION "
28
+ conda update --quiet - y conda
29
+ conda install --quiet - y python=" $PYTHON_VERSION "
30
30
else
31
31
eval " $( " ${conda_dir} /Scripts/conda.exe" ' shell.bash' ' hook' ) "
32
32
fi
You can’t perform that action at this time.
0 commit comments