-
Notifications
You must be signed in to change notification settings - Fork 0
158 lines (132 loc) · 3.51 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
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
149
150
151
152
153
154
155
156
157
158
name: Build
on:
workflow_dispatch:
push:
branches:
- "main"
paths-ignore:
- '**.gitignore'
- 'CODEOWNERS'
- 'LICENSE.txt'
- '**.md'
- '**.adoc'
- '**.txt'
- '.all-contributorsrc'
- 'localdeployment/docker-compose.yml'
pull_request:
paths-ignore:
- '**.gitignore'
- 'CODEOWNERS'
- 'LICENSE.txt'
- '**.md'
- '**.adoc'
- '**.txt'
- '.all-contributorsrc'
- 'localdeployment/docker-compose.yml'
concurrency:
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}"
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'turing85/spring-file-upload' }}
permissions:
actions: write
checks: write
pull-requests: write
jobs:
recreate-comment:
name: Recreate Comment
runs-on: ubuntu-latest
steps:
- name: Publish Report
uses: turing85/publish-report@v2
with:
checkout: 'true'
recreate-comment: true
populate-cache:
name: Populate Cache
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Populate cache
uses: ./.github/actions/populate-cache
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
needs:
- recreate-comment
- populate-cache
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Build and Test
run: |
./mvnw \
--batch-mode \
--color always \
--define ci \
clean package
- name: Upload Maven State
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
if-no-files-found: error
name: maven-state
path: '**/target/maven-*'
retention-days: 2
- name: Upload Compiled Classes
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
if-no-files-found: error
name: compiled-classes
path: '**/target/*classes'
retention-days: 2
- name: Upload JARs
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
if-no-files-found: error
name: jars
path: '**/target/*.jar'
retention-days: 2
- name: Upload Unit Test Report
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: unit-test-report
path: '**/target/surefire-reports/*.xml'
if-no-files-found: error
retention-days: 2
- name: Publish Report
if: ${{ always() }}
uses: turing85/publish-report@v2
with:
report-name: Unit Test
report-path: '**/target/surefire-reports/*.xml'
owasp:
name: OWASP Scan
runs-on: ubuntu-latest
needs:
- build-and-test
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: OWASP Scan
uses: ./.github/actions/owasp
with:
nvd-api-key: ${{ secrets.NVD_API_KEY }}
integration-tests:
name: Integration Tests
runs-on: ubuntu-latest
needs:
- build-and-test
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Integration Test
uses: ./.github/actions/integration-test