-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (42 loc) · 1004 Bytes
/
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
name: Build
on:
push:
branches:
- main
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- 'NOTICE'
- 'README*'
pull_request:
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- 'NOTICE'
- 'README*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: checkout
- uses: actions/setup-java@v1
name: set up jdk 17
with:
java-version: 17
- name: build with maven
run: mvn verify -Pnative
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
name: checkout
- uses: actions/setup-java@v1
name: set up jdk 17
with:
java-version: 17
- name: build with maven
# Skip integration tests. TestContainers does not support Windows Server 2019: https://github.com/testcontainers/testcontainers-java/issues/2960
run: mvn test