-
Notifications
You must be signed in to change notification settings - Fork 75
45 lines (45 loc) · 1001 Bytes
/
ci-4.x.yml
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
name: vertx-hazelcast (4.x)
on:
schedule:
- cron: '0 4 * * *'
jobs:
CI:
strategy:
matrix:
os: [ubuntu-latest]
jdk: [8,11]
hz: [ 4.2.8,5.3.8 ]
exclude:
- jdk: 8
hz: 5.3.8
uses: ./.github/workflows/ci.yml
with:
branch: 4.x
jdk: ${{ matrix.jdk }}
os: ${{ matrix.os }}
hz: ${{ matrix.hz }}
secrets: inherit
IT:
strategy:
matrix:
os: [ubuntu-latest]
jdk: [8,11]
hz: [ 4.2.8,5.3.8 ]
exclude:
- jdk: 8
hz: 5.3.8
uses: ./.github/workflows/it.yml
with:
branch: 4.x
jdk: ${{ matrix.jdk }}
os: ${{ matrix.os }}
hz: ${{ matrix.hz }}
secrets: inherit
Deploy:
if: ${{ github.repository_owner == 'vert-x3' && (github.event_name == 'push' || github.event_name == 'schedule') }}
needs: [CI, IT]
uses: ./.github/workflows/deploy.yml
with:
branch: 4.x
jdk: 8
secrets: inherit