summaryrefslogtreecommitdiff
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-06-19 09:37:07 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-07-03 13:35:35 +0900
commitbde3b98a6040800e05c9cf448228f094f80b8fed (patch)
tree43ab85cf601b85954fa2bb4f72b71c8b111fdc8f /.cirrus.yml
parent4a60764108663bf2088d843e55e18756f2b1293f (diff)
[Cirrus] Make gem download non-verbose
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml16
1 files changed, 8 insertions, 8 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 16cc4a170a..2ad3992be4 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -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