[Cirrus] Make gem download non-verbose

This commit is contained in:
Nobuyoshi Nakada 2023-06-19 09:37:07 +09:00
parent 4a60764108
commit bde3b98a60
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465

View File

@ -46,11 +46,11 @@ task:
folder: .downloaded-cache
fingerprint_script:
sed 's/ */ /g;s/ *#.*//;/^$/d;s/\([^ ]*\) \([^ ]*\)/\1-\2.gem/;s/ .*//' gems/bundled_gems
populate_script:
sudo apt-get install wget;
mkdir -p .downloaded-cache;
populate_script: |
sudo apt-get install --no-install-recommends -q -y wget
mkdir -p .downloaded-cache
sed 's/ */ /g;s/ *#.*//;/^$/d;s/\([^ ]*\) \([^ ]*\)/\1-\2.gem/;s/ .*//' gems/bundled_gems |
wget -P .downloaded-cache -nd -B https://rubygems.org/downloads/ -i -
wget -nv -P .downloaded-cache -nd -B https://rubygems.org/downloads/ -i -
# Arm containers are executed in AWS's EKS, and it's not yet supporting IPv6
# See https://github.com/aws/containers-roadmap/issues/835
disable_ipv6_script: sudo ./tool/disable_ipv6.sh
@ -113,11 +113,11 @@ yjit_task:
fingerprint_script:
sed -e 's/ */ /g;s/ *#.*//;/^$/d;s/\([^ ]*\) \([^ ]*\)/\1-\2.gem/;s/ .*//'
gems/bundled_gems
populate_script:
sudo apt-get install wget;
mkdir -p .downloaded-cache;
populate_script: |
sudo apt-get install --no-install-recommends -q -y wget
mkdir -p .downloaded-cache
sed 's/ */ /g;s/ *#.*//;/^$/d;s/\([^ ]*\) \([^ ]*\)/\1-\2.gem/;s/ .*//' gems/bundled_gems |
wget -P .downloaded-cache -nd -B https://rubygems.org/downloads/ -i -
wget -nv -P .downloaded-cache -nd -B https://rubygems.org/downloads/ -i -
# Arm containers are executed in AWS's EKS, and it's not yet supporting IPv6
# See https://github.com/aws/containers-roadmap/issues/835
disable_ipv6_script: sudo ./tool/disable_ipv6.sh