-
Notifications
You must be signed in to change notification settings - Fork 52
397 lines (397 loc) · 10.6 KB
/
ci.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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
name: CI
'on':
- push
- pull_request
env:
UTILITY_PHP_VERSION: '8.2'
jobs:
ciDoesNotSkip:
name: 'Tag Check: `[ci skip]`'
runs-on: ubuntu-22.04
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
-
run: |
echo "CI Running"
phpSyntaxCheck:
name: 'PHP Syntax Check (PHP ${{ matrix.php.version }})'
strategy:
matrix:
php:
-
version: '8.2'
multiple: false
experimental: false
-
version: '8.3'
multiple: true
experimental: false
-
version: '8.4'
multiple: true
experimental: true
runs-on: ubuntu-22.04
needs:
- ciDoesNotSkip
if: "!contains(github.event.head_commit.message, '[no php]')"
steps:
-
uses: actions/checkout@v4
-
name: 'Set PHP environment (PHP ${{ matrix.php.version }})'
uses: shivammathur/setup-php@v2
with:
php-version: '${{ matrix.php.version }}'
extensions: :php-psr
-
name: 'Syntax Check'
continue-on-error: '${{ matrix.php.experimental }}'
run: |
find . \( -type d \( -name '.git' -or -name 'vendor' -or -name 'runtime' -or -name 'node_modules' \) -prune \) -or \( -type f -name '*.php' -print \) \
| sort \
| xargs ${{ matrix.php.multiple && ' ' || ' -n 1 '}} php -l
env:
LANG: C
phpStyleCheck:
name: 'PHP Coding Style'
runs-on: ubuntu-22.04
needs:
- ciDoesNotSkip
- phpSyntaxCheck
- setupComposer
if: "!contains(github.event.head_commit.message, '[no php]')"
steps:
-
uses: actions/checkout@v4
-
uses: actions/cache@v4
with:
path: |
vendor
~/.cache/composer/files
key: "composer-${{ hashFiles('composer.lock') }}"
-
name: 'Set PHP environment (PHP ${{ env.UTILITY_PHP_VERSION }})'
uses: shivammathur/setup-php@v2
with:
php-version: '${{ env.UTILITY_PHP_VERSION }}'
extensions: :php-psr
-
name: 'Run PHPCS'
run: 'php vendor/bin/phpcs -p'
phpCheckAuthor:
name: 'Check Author'
runs-on: ubuntu-22.04
needs:
- ciDoesNotSkip
if: "!contains(github.event.head_commit.message, '[no php]') && !contains(github.event.head_commit.message, '[no author]')"
steps:
-
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: 'Composer cache'
uses: actions/cache@v4
with:
path: ~/.cache/composer/files
key: 'author-composer-cache-${{ github.sha }}'
restore-keys: author-composer-cache-
-
name: 'Set PHP environment (PHP 7.4)'
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
-
name: 'Prepare for phpcq/author-validation'
run: |
rm -f composer.json
mv composer.check-author.json composer.json
-
name: 'Install phpcq/author-validation'
uses: nick-invision/retry@v3
with:
timeout_seconds: 300
max_attempts: 3
retry_on: error
command: |
rm -rf composer.lock vendor
make composer.phar
./composer.phar update
-
name: 'Execute check-author.php'
run: |
patch -p0 -d vendor/phpcq/author-validation < data/patch/check-author.nofollow.patch
php -d memory_limit=-1 vendor/bin/check-author.php --php-files \
actions \
assets \
commands \
components \
controllers \
messages \
migrations \
models
phpComposerStyle:
name: 'Check composer.json normalized'
runs-on: ubuntu-22.04
needs:
- ciDoesNotSkip
- phpSyntaxCheck
- setupComposer
if: "!contains(github.event.head_commit.message, '[no php]')"
steps:
-
uses: actions/checkout@v4
-
uses: actions/cache@v4
with:
path: |
vendor
~/.cache/composer/files
key: "composer-${{ hashFiles('composer.lock') }}"
-
name: 'Set PHP environment (PHP ${{ env.UTILITY_PHP_VERSION }})'
uses: shivammathur/setup-php@v2
with:
php-version: '${{ env.UTILITY_PHP_VERSION }}'
extensions: :php-psr
-
name: 'Check composer.json normalized'
run: 'composer.phar normalize --dry-run'
setupNPM:
name: 'Setup NPM (install node_modules)'
runs-on: ubuntu-22.04
needs:
- ciDoesNotSkip
steps:
-
uses: actions/checkout@v4
-
uses: actions/cache@v4
with:
path: |
node_modules
~/.npm
key: "npm-2-${{ hashFiles('package-lock.json') }}"
restore-keys: npm-2-
-
name: 'Use node.js 20 LTS'
uses: actions/setup-node@v4
with:
node-version: '20'
-
name: 'Install NPM packages'
run: 'npm clean-install'
jsStyleCheck:
name: 'JS Coding Style'
runs-on: ubuntu-22.04
needs:
- ciDoesNotSkip
- setupNPM
steps:
-
uses: actions/checkout@v4
-
uses: actions/cache@v4
with:
path: |
node_modules
~/.npm
key: "npm-2-${{ hashFiles('package-lock.json') }}"
-
name: 'Use node.js 20 LTS'
uses: actions/setup-node@v4
with:
node-version: '20'
-
name: 'Run `semistandard`'
run: 'npx semistandard "resources/**/*[ej]s"'
cssStyleCheck:
name: 'CSS Coding Style'
runs-on: ubuntu-22.04
needs:
- ciDoesNotSkip
- setupNPM
steps:
-
uses: actions/checkout@v4
-
uses: actions/cache@v4
with:
path: |
node_modules
~/.npm
key: "npm-2-${{ hashFiles('package-lock.json') }}"
-
name: 'Use node.js 20 LTS'
uses: actions/setup-node@v4
with:
node-version: '20'
-
name: 'Run StyleLint'
run: 'npx stylelint "resources/**/*.scss" "resources/**/*.css"'
setupComposer:
name: 'Setup Composer (install vendor)'
runs-on: ubuntu-22.04
needs:
- ciDoesNotSkip
- phpSyntaxCheck
if: "!contains(github.event.head_commit.message, '[no php]')"
steps:
-
uses: actions/checkout@v4
-
uses: actions/cache@v4
with:
path: |
vendor
~/.cache/composer/files
key: "composer-${{ hashFiles('composer.lock') }}"
restore-keys: composer-
-
name: 'Set PHP environment (PHP ${{ env.UTILITY_PHP_VERSION }})'
uses: shivammathur/setup-php@v2
with:
php-version: '${{ env.UTILITY_PHP_VERSION }}'
extensions: :php-psr
-
name: 'Install composer packages'
run: |
rm -rf vendor
make composer.phar
make vendor
licenseCheck:
name: 'Check license'
needs:
- ciDoesNotSkip
- setupComposer
- setupNPM
runs-on: ubuntu-22.04
steps:
-
name: 'Install packages'
run: |
sudo apt update -y
sudo apt install -y jpegoptim libxml2-utils
-
uses: actions/checkout@v4
-
uses: actions/cache@v4
with:
path: |
vendor
~/.cache/composer/files
key: "composer-${{ hashFiles('composer.lock') }}"
-
uses: actions/cache@v4
with:
path: |
node_modules
~/.npm
key: "npm-2-${{ hashFiles('package-lock.json') }}"
-
name: 'Set PHP environment (PHP ${{ env.UTILITY_PHP_VERSION }})'
uses: shivammathur/setup-php@v2
with:
php-version: '${{ env.UTILITY_PHP_VERSION }}'
extensions: :php-psr
-
name: 'Use node.js 20 LTS'
uses: actions/setup-node@v4
with:
node-version: '20'
-
name: 'Basic setup the app'
run: 'make init-no-resource'
-
name: 'Check licenses'
run: './yii license'
phpUnit:
name: 'Build & Test (PHP ${{ matrix.php.version }}, PgSQL ${{ matrix.pgsql.version }})'
needs:
- ciDoesNotSkip
- phpSyntaxCheck
- setupComposer
- setupNPM
if: "!contains(github.event.head_commit.message, '[no php]')"
continue-on-error: '${{ matrix.php.experimental || matrix.pgsql.experimental }}'
strategy:
matrix:
php:
-
version: '8.2'
experimental: false
-
version: '8.3'
experimental: false
-
version: '8.4'
experimental: true
pgsql:
-
version: '11'
experimental: false
image: 11-alpine
-
version: latest
experimental: false
image: alpine
services:
postgres:
image: 'postgres:${{ matrix.pgsql.image }}'
ports:
- '5432:5432'
env:
POSTGRES_USER: statink
POSTGRES_PASSWORD: statink
POSTGRES_DB: statink
POSTGRES_INITDB_ARGS: '-E UTF-8 --locale=en_US.UTF8 -k'
options: '--health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5'
env:
GEOIP_LICENSE_KEY: '${{ secrets.GEOIP_LICENSE_KEY }}'
runs-on: ubuntu-22.04
steps:
-
name: 'Install packages'
run: |
sudo apt update -y
sudo apt install -y jpegoptim libxml2-utils
-
uses: actions/checkout@v4
-
uses: actions/cache@v4
with:
path: |
vendor
~/.cache/composer/files
key: "composer-${{ hashFiles('composer.lock') }}"
-
uses: actions/cache@v4
with:
path: |
node_modules
~/.npm
key: "npm-2-${{ hashFiles('package-lock.json') }}"
-
name: 'Set PHP environment (PHP ${{ matrix.php.version }})'
uses: shivammathur/setup-php@v2
with:
php-version: '${{ matrix.php.version }}'
extensions: :php-psr
-
name: 'Use node.js 20 LTS'
uses: actions/setup-node@v4
with:
node-version: '20'
-
name: 'Basic setup the app'
run: 'make init'
-
name: 'Reset DB config'
run: './yii secret/db localhost statink'
-
name: 'Migrate DB'
run: 'make migrate-db'
-
name: 'Run Unit test'
run: 'make test'