-
Notifications
You must be signed in to change notification settings - Fork 206
100 lines (100 loc) · 2.93 KB
/
ci-matrix-5.x.yml
File metadata and controls
100 lines (100 loc) · 2.93 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
name: CI matrix (5.x)
on:
workflow_call:
inputs:
branch:
required: true
type: string
jobs:
CI:
strategy:
fail-fast: false
matrix:
include:
# JDK 11 - Baseline (7 jobs)
- os: ubuntu-latest
jdk: 11
profile: 'PostgreSQL-14'
module: 'vertx-pg-client'
- os: ubuntu-latest
jdk: 11
profile: 'MySQL-8.4'
module: 'vertx-mysql-client'
- os: ubuntu-latest
jdk: 11
profile: 'MariaDB-11.8'
module: 'vertx-mysql-client'
- os: ubuntu-latest
jdk: 11
profile: 'MSSQL-2019-latest'
module: 'vertx-mssql-client'
- os: ubuntu-latest
jdk: 11
profile: 'DB2-12.1'
module: 'vertx-db2-client'
- os: ubuntu-latest
jdk: 11
profile: 'Oracle-23'
module: 'vertx-oracle-client'
- os: ubuntu-latest
jdk: 11
module: 'vertx-sql-client-templates'
# JDK 25 - Comprehensive (11 jobs)
- os: ubuntu-latest
jdk: 25
profile: 'PostgreSQL-14'
module: 'vertx-pg-client'
- os: ubuntu-latest
jdk: 25
profile: 'PostgreSQL-16'
module: 'vertx-pg-client'
- os: ubuntu-latest
jdk: 25
profile: 'PostgreSQL-18'
module: 'vertx-pg-client'
- os: ubuntu-latest
jdk: 25
profile: 'MySQL-8.4'
module: 'vertx-mysql-client'
- os: ubuntu-latest
jdk: 25
profile: 'MySQL-9.6'
module: 'vertx-mysql-client'
- os: ubuntu-latest
jdk: 25
profile: 'MariaDB-11.8'
module: 'vertx-mysql-client'
- os: ubuntu-latest
jdk: 25
profile: 'MSSQL-2019-latest'
module: 'vertx-mssql-client'
- os: ubuntu-latest
jdk: 25
profile: 'MSSQL-2022-latest'
module: 'vertx-mssql-client'
- os: ubuntu-latest
jdk: 25
profile: 'MSSQL-2025-latest'
module: 'vertx-mssql-client'
- os: ubuntu-latest
jdk: 25
profile: 'Oracle-23'
module: 'vertx-oracle-client'
uses: ./.github/workflows/ci.yml
with:
branch: ${{ inputs.branch }}
jdk: ${{ matrix.jdk }}
os: ${{ matrix.os }}
profile: ${{ matrix.profile }}
module: ${{ matrix.module }}
deploy: ${{ matrix.jdk == '8' && matrix.os == 'ubuntu-latest' }}
secrets: inherit
Deploy:
name: Deploy to OSSRH
if: ${{ github.repository_owner == 'eclipse-vertx' && (github.event_name == 'push' || github.event_name == 'schedule') }}
needs: CI
uses: ./.github/workflows/deploy.yml
with:
branch: ${{ inputs.branch }}
jdk: 11
secrets: inherit