summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2019-08-17 09:43:05 +0900
committerTakashi Kokubun <takashikkbn@gmail.com>2019-08-17 09:43:06 +0900
commit045152df9e91c34a2785cb95e5964d7fc1b14df5 (patch)
tree5f58694f6c44f56471b3974e620e5b49cbcdd0ee
parent75d29db8f965893bb6ab38b9008abc80cdda246e (diff)
Disable fail-fast of GitHub Actions
This is default: true https://help.github.com/en/articles/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast When `make check` fails, we do not want to cancel `make test-bundler`.
-rw-r--r--.github/workflows/macos.yml1
-rw-r--r--.github/workflows/ubuntu.yml1
-rw-r--r--.github/workflows/windows.yml1
3 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index bd2a14341e..e357e3ad2e 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -12,6 +12,7 @@ jobs:
strategy:
matrix:
test_task: [ "check", "test-bundler", "test-bundled-gems" ]
+ fail-fast: false
steps:
- name: Disable Firewall
run: |
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 118fe5108e..fe4eb6143c 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -12,6 +12,7 @@ jobs:
strategy:
matrix:
test_task: [ "test-bundler", "test-bundled-gems" ]
+ fail-fast: false
steps:
- name: Install libraries
run: |
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 45f97284e9..984ac7011a 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -18,6 +18,7 @@ jobs:
vs: 2019
- os: windows-2019
vs: 2017
+ fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Install libraries with vcpkg