-
Notifications
You must be signed in to change notification settings - Fork 206
90 lines (90 loc) · 2.6 KB
/
ci-4.x.yml
File metadata and controls
90 lines (90 loc) · 2.6 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
name: vertx-sql-client (4.x)
on:
schedule:
- cron: '0 4 * * *'
jobs:
CI:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
jdk: 8
profile: 'PostgreSQL-9'
module: 'vertx-pg-client'
- os: ubuntu-latest
jdk: 8
profile: 'PostgreSQL-10'
module: 'vertx-pg-client'
- os: ubuntu-latest
jdk: 8
profile: 'PostgreSQL-11'
module: 'vertx-pg-client'
- os: ubuntu-latest
jdk: 8
profile: 'MySQL-8.0'
module: 'vertx-mysql-client'
- os: ubuntu-latest
jdk: 8
profile: 'MySQL-5.6'
module: 'vertx-mysql-client'
- os: ubuntu-latest
jdk: 8
profile: 'MySQL-5.7'
module: 'vertx-mysql-client'
- os: ubuntu-latest
jdk: 8
profile: 'MariaDB-10.4'
module: 'vertx-mysql-client'
- os: ubuntu-latest
jdk: 8
profile: 'MSSQL-2017-latest'
module: 'vertx-mssql-client'
- os: ubuntu-latest
jdk: 8
profile: 'MSSQL-2019-latest'
module: 'vertx-mssql-client'
- os: ubuntu-latest
jdk: 8
module: 'vertx-db2-client'
- os: ubuntu-latest
jdk: 8
module: 'vertx-sql-client-templates'
- os: ubuntu-latest
jdk: 25
profile: 'PostgreSQL-11'
module: 'vertx-pg-client'
- os: ubuntu-latest
jdk: 25
profile: 'MySQL-5.7'
module: 'vertx-mysql-client'
- os: ubuntu-latest
jdk: 25
profile: 'MariaDB-10.4'
module: 'vertx-mysql-client'
- os: ubuntu-latest
jdk: 25
profile: 'MSSQL-2019-latest'
module: 'vertx-mssql-client'
- os: ubuntu-latest
jdk: 25
profile: 'Oracle-23'
module: 'vertx-oracle-client'
uses: ./.github/workflows/ci.yml
with:
branch: 4.x
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: 4.x
jdk: 8
secrets: inherit