Skip to content

Commit e48c953

Browse files
committed
dispatched workflows allow not to mute failed tests
1 parent 3cbf0b3 commit e48c953

File tree

5 files changed

+34
-0
lines changed

5 files changed

+34
-0
lines changed

.github/workflows/dispatched-firebird-tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ on:
1313
required: false
1414
default: ''
1515
type: string
16+
show_all_fails:
17+
description: 'No mute tests'
18+
type: boolean
19+
default: false
20+
required: true
1621
firebird30:
1722
description: 'Firebird 3.0'
1823
type: boolean
@@ -43,6 +48,7 @@ jobs:
4348
target_framework: ${{ matrix.net }}
4449
specific_sha: ${{ inputs.specific_sha }}
4550
fetch_depth: ${{ fromJSON(inputs.fetch_depth) }}
51+
show_all_fails: ${{ fromJSON(inputs.show_all_fails) }}
4652
test_output_verbosity: minimal
4753
test_run_timeout: 40
4854
run_main: true

.github/workflows/dispatched-mssql-tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ on:
1313
required: false
1414
default: ''
1515
type: string
16+
show_all_fails:
17+
description: 'No mute tests'
18+
type: boolean
19+
default: false
20+
required: true
1621
mssql2017:
1722
description: 'MS SQL Server 2017'
1823
type: boolean
@@ -48,6 +53,7 @@ jobs:
4853
target_framework: ${{ matrix.net }}
4954
specific_sha: ${{ inputs.specific_sha }}
5055
fetch_depth: ${{ fromJSON(inputs.fetch_depth) }}
56+
show_all_fails: ${{ fromJSON(inputs.show_all_fails) }}
5157
test_output_verbosity: minimal
5258
test_run_timeout: 50
5359
run_main: true
@@ -68,6 +74,7 @@ jobs:
6874
target_framework: ${{ matrix.net }}
6975
specific_sha: ${{ inputs.specific_sha }}
7076
fetch_depth: ${{ fromJSON(inputs.fetch_depth) }}
77+
show_all_fails: ${{ fromJSON(inputs.show_all_fails) }}
7178
test_output_verbosity: minimal
7279
test_run_timeout: 50
7380
run_main: true

.github/workflows/dispatched-mysql5-tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ on:
1313
required: false
1414
default: ''
1515
type: string
16+
show_all_fails:
17+
description: 'No mute tests'
18+
type: boolean
19+
default: false
20+
required: true
1621
mysql55:
1722
description: 'MySQL 5.5'
1823
type: boolean
@@ -48,6 +53,7 @@ jobs:
4853
target_framework: ${{ matrix.net }}
4954
specific_sha: ${{ inputs.specific_sha }}
5055
fetch_depth: ${{ fromJSON(inputs.fetch_depth) }}
56+
show_all_fails: ${{ fromJSON(inputs.show_all_fails) }}
5157
test_output_verbosity: minimal
5258
test_run_timeout: 20
5359
run_main: true
@@ -68,6 +74,7 @@ jobs:
6874
target_framework: ${{ matrix.net }}
6975
specific_sha: ${{ inputs.specific_sha }}
7076
fetch_depth: ${{ fromJSON(inputs.fetch_depth) }}
77+
show_all_fails: ${{ fromJSON(inputs.show_all_fails) }}
7178
test_output_verbosity: minimal
7279
test_run_timeout: 30
7380
run_main: true

.github/workflows/dispatched-pgsql10-tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ on:
1313
required: false
1414
default: ''
1515
type: string
16+
show_all_fails:
17+
description: 'No mute tests'
18+
type: boolean
19+
default: false
20+
required: true
1621
pgsql100:
1722
description: 'PostgreSQL 10'
1823
type: boolean
@@ -48,6 +53,7 @@ jobs:
4853
target_framework: ${{ matrix.net }}
4954
specific_sha: ${{ inputs.specific_sha }}
5055
fetch_depth: ${{ fromJSON(inputs.fetch_depth) }}
56+
show_all_fails: ${{ fromJSON(inputs.show_all_fails) }}
5157
test_output_verbosity: minimal
5258
test_run_timeout: 30
5359
run_main: true
@@ -68,6 +74,7 @@ jobs:
6874
target_framework: ${{ matrix.net }}
6975
specific_sha: ${{ inputs.specific_sha }}
7076
fetch_depth: ${{ fromJSON(inputs.fetch_depth) }}
77+
show_all_fails: ${{ fromJSON(inputs.show_all_fails) }}
7178
test_output_verbosity: minimal
7279
test_run_timeout: 30
7380
run_main: true

.github/workflows/dispatched-pgsql9-tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ on:
1313
required: false
1414
default: ''
1515
type: string
16+
show_all_fails:
17+
description: 'No mute tests'
18+
type: boolean
19+
default: false
20+
required: true
1621
pgsql91:
1722
description: 'PostgreSQL 9.1'
1823
type: boolean
@@ -66,6 +71,7 @@ jobs:
6671
target_framework: ${{ matrix.net }}
6772
specific_sha: ${{ inputs.specific_sha }}
6873
fetch_depth: ${{ fromJSON(inputs.fetch_depth) }}
74+
show_all_fails: ${{ fromJSON(inputs.show_all_fails) }}
6975
test_output_verbosity: minimal
7076
test_run_timeout: 30
7177
run_main: true
@@ -86,6 +92,7 @@ jobs:
8692
target_framework: ${{ matrix.net }}
8793
specific_sha: ${{ inputs.specific_sha }}
8894
fetch_depth: ${{ fromJSON(inputs.fetch_depth) }}
95+
show_all_fails: ${{ fromJSON(inputs.show_all_fails) }}
8996
test_output_verbosity: minimal
9097
test_run_timeout: 30
9198
run_main: true

0 commit comments

Comments
 (0)