From ae165630800ca32eca0377d467a6e0f25ee185d1 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Tue, 9 Feb 2021 14:39:26 +0900 Subject: [PATCH] Workaround build error for ruby-head Workaround for https://github.com/faker-ruby/faker/issues/2260. This PR suspends ruby-head CI until https://github.com/travisjeffery/timecop/pull/279 is resolved. GitHub Actions doesn't seem to have a mechanism like Travis CI's `allow_failures` yet. https://github.com/actions/toolkit/issues/399 --- .github/workflows/ruby.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index ad63b464a5..aa4a54ef7e 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -39,7 +39,9 @@ jobs: - '2.6' - '2.7' - '3.0' - - 'head' + # FIXME: Workaround for https://github.com/faker-ruby/faker/issues/2260 + # Resume ruby-head CI when https://github.com/travisjeffery/timecop/pull/279 will be resolved. + # - 'head' - truffleruby-head continue-on-error: ${{ endsWith(matrix.ruby, 'head') }} steps: