-
Notifications
You must be signed in to change notification settings - Fork 27
101 lines (96 loc) · 2.84 KB
/
dispatched-firebird-tests.yml
File metadata and controls
101 lines (96 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: 🛠🐦 Firebird tests
run-name: Run database tests on Firebird on dispatch. Run No ${{ github.run_number }}.
on:
workflow_dispatch:
inputs:
specific_sha:
description: 'Commit SHA to checkout'
required: false
default: ''
type: string
show_all_fails:
description: 'No mute tests'
type: boolean
default: false
required: true
firebird30:
description: 'Firebird 3.0'
type: boolean
default: true
required: true
firebird40:
description: 'Firebird 4.0'
type: boolean
default: false
required: true
firebird50:
description: 'Firebird 5.0'
type: boolean
default: false
required: true
# new commits with the same key will cancel previously run workflows
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
actions: read
checks: write
jobs:
test_on_firebird30:
name: Tests on Firebird 3.0
if: ${{ inputs.firebird30 }}
strategy:
matrix:
net: [ 'net8.0', 'net10.0' ]
uses: DataObjects-NET/dataobjects-net/.github/workflows/reusable-storage-dependant-tests.yml@master
with:
storage: firebird30
build_config: Release
target_framework: ${{ matrix.net }}
specific_sha: ${{ inputs.specific_sha }}
show_all_fails: ${{ fromJSON(inputs.show_all_fails) }}
test_output_verbosity: minimal
test_run_timeout: 40
run_main: true
run_sql: true
run_extensions: true
publish_raw_results: true
test_on_firebird40:
name: Tests on Firebird 4.0
if: ${{ inputs.firebird40 }}
strategy:
matrix:
net: [ 'net8.0', 'net10.0' ]
uses: DataObjects-NET/dataobjects-net/.github/workflows/reusable-storage-dependant-tests.yml@master
with:
storage: firebird40
build_config: Release
target_framework: ${{ matrix.net }}
specific_sha: ${{ inputs.specific_sha }}
show_all_fails: ${{ fromJSON(inputs.show_all_fails) }}
test_output_verbosity: minimal
test_run_timeout: 40
run_main: true
run_sql: true
run_extensions: true
publish_raw_results: true
test_on_firebird50:
name: Tests on Firebird 5.0
if: ${{ inputs.firebird50 }}
strategy:
matrix:
net: [ 'net8.0', 'net10.0' ]
uses: DataObjects-NET/dataobjects-net/.github/workflows/reusable-storage-dependant-tests.yml@master
with:
storage: firebird50
build_config: Release
target_framework: ${{ matrix.net }}
specific_sha: ${{ inputs.specific_sha }}
show_all_fails: ${{ fromJSON(inputs.show_all_fails) }}
test_output_verbosity: minimal
test_run_timeout: 40
run_main: true
run_sql: true
run_extensions: true
publish_raw_results: true