Skip to content

Commit

Permalink
[Cirrus] Make gem download non-verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Jul 3, 2023
1 parent 4a60764 commit bde3b98
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .cirrus.yml
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit bde3b98

Please sign in to comment.