-
Notifications
You must be signed in to change notification settings - Fork 560
95 lines (90 loc) · 3.01 KB
/
continuous-integration-workflow.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
name: Continuous Integration
on:
push:
pull_request:
branches:
- main
- 2.0.x
- 1.x
workflow_dispatch:
jobs:
build_core:
name: Build and test core
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: 17
- name: Build latest
run: mvn -q clean install
working-directory: ./aws-serverless-java-container-core
build_jersey:
name: Build and test Jersey
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: 17
- name: Build latest
run: ./gha_build.sh jersey true true
# - name: Set up JDK 8
# uses: actions/setup-java@v3
# with:
# distribution: 'corretto'
# java-version: 8
# - name: Build Jersey 2.27
# run: ./gha_build.sh jersey false false -Djersey.version=2.27
# - name: Build Jersey 2.28
# run: ./gha_build.sh jersey false false -Djersey.version=2.28
# - name: Build Jersey 2.29
# run: ./gha_build.sh jersey false false -Djersey.version=2.29.1
build_spring:
name: Build and test Spring
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: 17
- name: Build latest
run: ./gha_build.sh spring true true
# - name: Build with Spring 6.0.x
# run: ./gha_build.sh spring false false -Dspring.version=6.0.16 -Dspring-security.version=6.1.10 -Ddependency-check.skip=true
build_springboot3:
name: Build and test SpringBoot 3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: 17
- name: Build latest
run: ./gha_build.sh springboot3 true true
# Build with additional supported versions https://spring.io/projects/spring-boot#support
- name: Build with Spring Boot 3.1.x
run: ./gha_build.sh springboot3 false false -Dspringboot.version=3.1.12 -Dspring.version=6.0.21 -Dspringsecurity.version=6.1.9 -Ddependency-check.skip=true
- name: Build with Spring Boot 3.2.x
run: ./gha_build.sh springboot3 false false -Dspringboot.version=3.2.7 -Dspring.version=6.1.10 -Dspringsecurity.version=6.2.5 -Ddependency-check.skip=true
# temporarily disabled as Struts is not released at the moment
# build_struts2:
# name: Build and test Struts
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Set up JDK 17
# uses: actions/setup-java@v3
# with:
# distribution: 'corretto'
# java-version: 17
# - name: Build latest
# run: ./gha_build.sh struts true true