-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (50 loc) · 1.4 KB
/
build.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
name: "build"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: "build"
services:
aerospike:
image: aerospike/aerospike-server:7.0.0.7_1
ports:
- 3000:3000
- 3001:3001
- 3002:3002
- 3003:3003
redis:
image: redis:latest
ports:
- 6379:6379
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [ 8, 21 ]
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Set up Java JDK"
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- name: "Print maven version"
run: ./mvnw -version
- name: "Test, Check style, Check PMD, Check license with Maven and Java"
if: matrix.java == '8'
run: |
./mvnw -T 4C clean test -Dasp-client.version=6.3.0 && sh ./tools/check_format.sh
- name: "Test with Maven and Java${{ matrix.java }}"
if: matrix.java != '8'
run: |
./mvnw -T 4C clean test -Dasp-client.version=4.1.2
- name: "Codecov"
if: matrix.java == '8'
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}