[前][次][番号順一覧][スレッド一覧]

ruby-changes:59230

From: Kazuhiro <ko1@a...>
Date: Fri, 13 Dec 2019 18:07:14 +0900 (JST)
Subject: [ruby-changes:59230] 26774351dc (master): Ignore error of `apt-get update` in MJIT workflow too

https://git.ruby-lang.org/ruby.git/commit/?id=26774351dc

From 26774351dc5f494253ba031e4bc453dc4dddb2cf Mon Sep 17 00:00:00 2001
From: Kazuhiro NISHIYAMA <zn@m...>
Date: Fri, 13 Dec 2019 18:06:36 +0900
Subject: Ignore error of `apt-get update` in MJIT workflow too


diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml
index 067140e..d23c136 100644
--- a/.github/workflows/mjit.yml
+++ b/.github/workflows/mjit.yml
@@ -18,7 +18,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mjit.yml#L18
       - 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 v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]