aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-12-13 18:04:21 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-12-13 18:04:21 +0900
commitd5c73681f8fd9e17b5378cb029fc88e98d7b6abb (patch)
tree10b45975266017da08155de21470b4335b1ab2f4 /.github
parent97a17a51b8e6eca31fd6421511f1907e6e95b415 (diff)
downloadruby-d5c73681f8fd9e17b5378cb029fc88e98d7b6abb.tar.gz
Ignore error of `apt-get update` on GitHub Actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ubuntu.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 91c9e2b2dd..885f078f07 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -50,7 +50,7 @@ jobs:
- name: Install libraries
run: |
set -x
- sudo apt-get update -q
+ sudo apt-get update -q || :
sudo apt-get install --no-install-recommends -q -y build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev bison autoconf ruby
# Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
- name: Checkout ruby/ruby