-
Notifications
You must be signed in to change notification settings - Fork 536
148 lines (148 loc) · 4.6 KB
/
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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
name: vertx-web (4.x)
on:
push:
branches:
- master
- '[0-9]+.[0-9x]+'
pull_request:
branches:
- master
- '[0-9]+.[0-9x]+'
schedule:
- cron: '0 4 * * *'
jobs:
Test:
name: Run tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
jdk: [8]
include:
- os: ubuntu-latest
jdk: 17
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install JDK
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.jdk }}
distribution: temurin
- name: Run tests
run: mvn -s .github/maven-ci-settings.xml clean verify -B
Apollo-Link-Tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18.13.0]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install JDK
uses: actions/setup-java@v2
with:
java-version: 8
distribution: temurin
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: sh vertx-web-graphql/start-apollo-tests-server.sh
- run: npm install
working-directory: vertx-web-graphql/tests/apollo
- run: npm run test
working-directory: vertx-web-graphql/tests/apollo
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: ApolloTestsServer.log
path: ~/ApolloTestsServer.log
- run: sh stop-apollo-tests-server.sh
working-directory: vertx-web-graphql
if: ${{ always() }}
GraphQLWS-Tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18.13.0]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install JDK
uses: actions/setup-java@v2
with:
java-version: 8
distribution: temurin
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: sh vertx-web-graphql/start-graphql-ws-tests-server.sh
- run: npm install
working-directory: vertx-web-graphql/tests/graphql-ws
- run: npm run test
working-directory: vertx-web-graphql/tests/graphql-ws
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: GraphQLWSTestsServer.log
path: ~/GraphQLWSTestsServer.log
- run: sh stop-graphql-ws-tests-server.sh
working-directory: vertx-web-graphql
if: ${{ always() }}
SockJS-WriteHandler-Tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16.13.1]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install JDK
uses: actions/setup-java@v2
with:
java-version: 8
distribution: temurin
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: sh vertx-web/start-sockjs-write-handler-tests-server.sh
- run: npm install
working-directory: vertx-web/tests/sockjs
- run: npm run test
working-directory: vertx-web/tests/sockjs
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: SockJSWriteHandlerTestServer.log
path: ~/SockJSWriteHandlerTestServer.log
- run: sh stop-sockjs-write-handler-tests-server.sh
working-directory: vertx-web
if: ${{ always() }}
Deploy:
name: Deploy to OSSRH
if: ${{ github.repository_owner == 'vert-x3' && (github.event_name == 'push' || github.event_name == 'schedule') }}
needs: [Test, Apollo-Link-Tests, SockJS-WriteHandler-Tests]
runs-on: ubuntu-latest
env:
VERTX_NEXUS_USERNAME: ${{ secrets.VERTX_NEXUS_USERNAME }}
VERTX_NEXUS_PASSWORD: ${{ secrets.VERTX_NEXUS_PASSWORD }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install JDK
uses: actions/setup-java@v2
with:
java-version: 8
distribution: temurin
- name: Get project version
run: echo "PROJECT_VERSION=$(mvn org.apache.maven.plugins:maven-help-plugin:evaluate -Dexpression=project.version -B | grep -v '\[')" >> $GITHUB_ENV
- name: Maven deploy
if: ${{ endsWith(env.PROJECT_VERSION, '-SNAPSHOT') }}
run: mvn deploy -s .github/maven-cd-settings.xml -DskipTests -B