-
Notifications
You must be signed in to change notification settings - Fork 2.1k
39 lines (39 loc) · 959 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
name: vertx-core (4.x)
on:
schedule:
- cron: '0 4 * * *'
jobs:
CI:
strategy:
matrix:
include:
- os: ubuntu-latest
jdk: 8
profile: ''
- os: ubuntu-latest
jdk: 8
profile: '-PtestNativeTransport'
- os: ubuntu-latest
jdk: 8
profile: '-PtestDomainSockets'
- os: ubuntu-latest
jdk: 21
profile: ''
- os: windows-latest
jdk: 8
profile: ''
uses: ./.github/workflows/ci.yml
with:
branch: 4.x
jdk: ${{ matrix.jdk }}
os: ${{ matrix.os }}
profile: ${{ matrix.profile }}
secrets: inherit
Deploy:
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