summaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2021-10-01 10:14:43 +0900
committerKazuhiro NISHIYAMA <znz@users.noreply.github.com>2021-10-01 11:14:02 +0900
commit77804be4577f53f3f151bc6cf7ec754c928207f5 (patch)
tree5dbfbb8ba4a3a07ef103510402dff7eb867b2fea /.github/workflows/macos.yml
parentca3cc677b31897e7306ac3b4565a0dd928168b08 (diff)
downloadruby-77804be4577f53f3f151bc6cf7ec754c928207f5.tar.gz
Use macos-10.15 and macos-11 instead of macos-latest
https://github.blog/changelog/2021-09-29-github-actions-jobs-running-on-macos-latest-are-now-running-on-macos-big-sur-11/
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 0a2d7ea73b..daaea69ecb 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -2,13 +2,14 @@ name: macOS
on: [push, pull_request]
jobs:
make:
- runs-on: macos-latest
strategy:
matrix:
+ os: [macos-10.15, macos-11]
test_task: [ "check", "test-bundler-parallel" ] #, "test-bundled-gems" ] matrix tests has unknown issues
fail-fast: false
env:
GITPULLOPTIONS: --no-tags origin ${{github.ref}}
+ runs-on: ${{ matrix.os }}
steps:
- run: mkdir build
working-directory: