1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Ignore error of apt-get update on GitHub Actions

This commit is contained in:
Kazuhiro NISHIYAMA 2019-12-13 18:04:21 +09:00
parent 97a17a51b8
commit d5c73681f8
No known key found for this signature in database
GPG key ID: 262ED8DBB4222F7A

View file

@ -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