-
Notifications
You must be signed in to change notification settings - Fork 1
234 lines (191 loc) · 6.11 KB
/
deployment_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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
name: Development Deployment
on:
push:
branches: [ "master" ]
workflow_dispatch:
jobs:
phplint:
name: PHP Lint
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4.1.1
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHP Linter
run: composer run-script phplint
- name: Test Info
uses: rjstone/discord-webhook-notify@v1
with:
severity: error
details: Code-Style error.
webhookUrl: ${{ secrets.WEBHOOK_DISCORD_URL }}
if: failure()
phpstan:
name: PHP Stan
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4.1.1
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHP Stan
run: composer run-script phpstan
- name: Test Info
uses: rjstone/discord-webhook-notify@v1
with:
severity: error
details: Code-Style error.
webhookUrl: ${{ secrets.WEBHOOK_DISCORD_URL }}
if: failure()
phpcs:
name: PHP CodeSniffer
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4.1.1
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHP Codesniffer
run: composer run-script phpcs
- name: Test Info
uses: rjstone/discord-webhook-notify@v1
with:
severity: error
details: Code-Style error.
webhookUrl: ${{ secrets.WEBHOOK_DISCORD_URL }}
if: failure()
phpunit:
name: PHP Unit Test
needs:
- phplint
- phpstan
- phpcs
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4.1.1
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHP Unit Test
run: composer run-script unittest
- name: Test Info
uses: rjstone/discord-webhook-notify@v1
with:
severity: error
details: Test error.
webhookUrl: ${{ secrets.WEBHOOK_DISCORD_URL }}
if: failure()
phpfunctional:
name: PHP Functional Test
needs:
- phplint
- phpstan
- phpcs
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4.1.1
- name: Install PHP with extensions.
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
extensions: pdo, pdo_sqlite
ini-values: date.timezone='UTC'
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHP Unit Test
run: composer run-script functionaltest
- name: Test Info
uses: rjstone/discord-webhook-notify@v1
with:
severity: error
details: Test error.
webhookUrl: ${{ secrets.WEBHOOK_DISCORD_URL }}
if: failure()
deployment_of_hackathon_to_build:
name: Deploy Build
needs:
- phpcs
- phplint
- phpstan
- phpunit
- phpfunctional
runs-on: ubuntu-20.04
steps:
- name: Get latest code
uses: actions/checkout@v4.1.1
- name: Install Composer Dependencies
run: composer install --prefer-dist --no-progress --no-dev
- name: Run create openapi Data
run: composer run-script openapi
- name: rsync deployments
uses: burnett01/rsync-deployments@6.0.0
with:
switches: -avz --no-o --no-g --no-perms --no-t -omit-dir-times --delete --exclude-from='.rsync-exclude'
path: /
remote_path: ${{ secrets.DEPLOY_PATH_API_BUILD }}
remote_host: ${{ secrets.DEPLOY_HOST }}
remote_port: ${{ secrets.DEPLOY_PORT }}
remote_user: ${{ secrets.DEPLOY_USER }}
remote_key: ${{ secrets.DEPLOY_KEY }}
remote_key_pass: ${{ secrets.DEPLOY_KEY_PASS }}
- name: Test Info Success
uses: rjstone/discord-webhook-notify@v1
with:
severity: info
details: Successful deployment on build.
webhookUrl: ${{ secrets.WEBHOOK_DISCORD_URL }}
if: success()
- name: Test Info Failure
uses: rjstone/discord-webhook-notify@v1
with:
severity: error
details: Failure deployment on build.
webhookUrl: ${{ secrets.WEBHOOK_DISCORD_URL }}
if: always()