-
Notifications
You must be signed in to change notification settings - Fork 17
92 lines (84 loc) · 2.46 KB
/
boot.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
name: boot
on:
push:
paths:
- "boot/**"
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: "corretto"
cache: "maven"
- name: Set up Database
run: |
docker compose up -d postgres
sleep 5
docker ps -a
- name: Build with Maven
run: mvn -B package --file boot/pom.xml -Put
# commits code quality analysis
intergration-test:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: "corretto"
cache: "maven"
- name: Set up Database
run: |
docker compose up -d postgres
sleep 5
docker ps -a
- name: Build with Maven(E2e testing)
run: mvn -B verify --file boot/pom.xml -Pit
dockerize:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: "corretto"
cache: "maven"
- name: Build with Maven(Build Docker Image)
run: |
mvn spring-boot:build-image --file boot/pom.xml -DskipTests
docker image ls
- name: Run application in Docker Container
run: |
docker compose --file ./docker-compose.yml up -d postgres
sleep 10
docker compose --file ./docker-compose.yml --file ./boot/docker-compose.local.yml up -d app
sleep 10
docker ps -a
docker compose --file ./docker-compose.yml --file ./boot/docker-compose.local.yml logs
- name: Build with Maven(SmokeTest)
env:
BASE_API_URL: http://localhost:9999
run: |
mvn -B verify --file boot/pom.xml -Psmoke
# Skip the Docker publishing steps.
#- name: Login to DockerHub Registry
# run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
#- name: Push Docker Image
# run: docker push hantsy/spring6-sample-boot