forked from vert-x3/vertx-web
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (35 loc) · 768 Bytes
/
ci-4.x.yml
File metadata and controls
35 lines (35 loc) · 768 Bytes
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
name: vertx-web (4.x)
on:
schedule:
- cron: '0 4 * * *'
jobs:
CI:
strategy:
matrix:
include:
- os: ubuntu-latest
jdk: 8
- os: ubuntu-latest
jdk: 25
- os: windows-latest
jdk: 8
uses: ./.github/workflows/ci.yml
with:
branch: 4.x
jdk: ${{ matrix.jdk }}
os: ${{ matrix.os }}
secrets: inherit
IT:
uses: ./.github/workflows/it.yml
with:
branch: 4.x
jdk: 8
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