From d5c73681f8fd9e17b5378cb029fc88e98d7b6abb Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA Date: Fri, 13 Dec 2019 18:04:21 +0900 Subject: Ignore error of `apt-get update` on GitHub Actions --- .github/workflows/ubuntu.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') 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 -- cgit v1.2.3