summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-01-19 11:02:18 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-01-19 11:56:39 +0900
commitedf2cedc9c54c48a16f2e6e7cc44d02df8c0603c (patch)
tree7af4c5da5403e890cf1fd22c99254bbafbdd23f5
parent496f295f91bc7cd1d15ff05fd593b5a3cf56d726 (diff)
Allow rexml to fail on macOS of Github Actions
And revert "Stop test-bundled-gems on macOS for now", 28b290f7f4cb332dab3ddf3132e1916d413ea65c.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2847
-rw-r--r--.github/workflows/macos.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index d03abf40e6..4a4b5a3717 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -11,7 +11,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
- test_task: [ "check", "test-bundler" ] # "test-bundled-gems"
+ test_task: [ "check", "test-bundler", "test-bundled-gems" ]
fail-fast: false
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
@@ -61,7 +61,7 @@ jobs:
RUBY_TESTOPTS: "-q --tty=no"
# Remove minitest from TEST_BUNDLED_GEMS_ALLOW_FAILURES if https://github.com/seattlerb/minitest/pull/798 is resolved
# rss needs to add workaround for the non rexml environment
- TEST_BUNDLED_GEMS_ALLOW_FAILURES: "minitest,xmlrpc,rss"
+ TEST_BUNDLED_GEMS_ALLOW_FAILURES: "minitest,xmlrpc,rss,rexml"
- name: Leaked Globals
run: make -C build -s leaked-globals
- uses: k0kubun/action-slack@v2.0.0