7
7
# Run all the tests on the new environment as much as possible.
8
8
# https://docs.github.com/en/free-pro-team@latest/actions/reference/specifications-for-github-hosted-runners
9
9
runs-on : ${{ matrix.os }}
10
- continue-on-error : ${{ matrix.allow-failure }}
10
+ continue-on-error : ${{ matrix.allow-failure || false }}
11
11
strategy :
12
12
matrix :
13
13
os :
@@ -26,15 +26,14 @@ jobs:
26
26
- 2.2
27
27
- 2.1
28
28
db : ['']
29
- allow-failure : [false]
30
29
include :
31
30
# Allow failure due to Mysql2::Error: Unknown system variable 'session_track_system_variables'.
32
31
- {os: ubuntu-16.04, ruby: 2.4, db: mariadb10.0, allow-failure: true}
33
32
# Comment out due to ci/setup.sh stucking.
34
- # - {os: ubuntu-18.04, ruby: 2.4, db: mariadb10.1, allow-failure: false }
33
+ # - {os: ubuntu-18.04, ruby: 2.4, db: mariadb10.1}
35
34
# `service mysql restart` fails.
36
35
- {os: ubuntu-20.04, ruby: 2.4, db: mariadb10.3, allow-failure: true}
37
- - {os: ubuntu-18.04, ruby: 2.4, db: mysql57, allow-failure: false }
36
+ - {os: ubuntu-18.04, ruby: 2.4, db: mysql57}
38
37
# Allow failure due to the issue #1165.
39
38
- {os: ubuntu-20.04, ruby: 2.4, db: mysql80, allow-failure: true}
40
39
- {os: ubuntu-18.04, ruby: 'head', db: '', allow-failure: true}
0 commit comments