-
-
Notifications
You must be signed in to change notification settings - Fork 28
177 lines (157 loc) · 5.27 KB
/
test.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
name: 'Tests'
on:
workflow_dispatch:
push:
branches:
- master
paths-ignore:
- 'docs/**'
- '.github/**'
- 'scripts/**'
pull_request:
paths-ignore:
- 'docs/**'
- '.github/**'
- 'scripts/**'
jobs:
test:
name: 'PHP ${{ matrix.php }} on ${{ matrix.os }} (c=${{ matrix.coverage }}, p=${{ matrix.profiling }}, e=${{ matrix.experimental }})'
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
env:
extensions: mbstring, intl, gettext, fileinfo, gd
ext-cache-key: cache-ext-v1
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
php: ['7.4', '8.0', '8.1', '8.2']
coverage: [false]
experimental: [false]
profiling: [false]
exclude:
# excluded for code coverage
- os: 'ubuntu-latest'
php: '7.4'
coverage: false
profiling: false
experimental: false
include:
# code coverage
- os: 'ubuntu-latest'
php: '7.4'
coverage: true
profiling: false
experimental: false
# code profiling
- os: 'ubuntu-latest'
php: '8.1'
coverage: false
profiling: true
experimental: false
# PHP 8.2 JIT experimental
- os: 'ubuntu-latest'
php: '8.2'
coverage: false
profiling: false
experimental: true
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup cache extensions
id: extcache
uses: shivammathur/cache-extensions@v1
with:
php-version: ${{ matrix.php }}
extensions: ${{ env.extensions }}
key: ${{ env.ext-cache-key }}
- name: Cache extensions
uses: actions/cache@v3
with:
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}
restore-keys: ${{ steps.extcache.outputs.key }}
- name: Install PHP (standart)
if: ${{ !matrix.coverage && !matrix.profiling && !matrix.experimental }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: ${{ env.extensions }}
coverage: none
- name: Install PHP (coverage)
if: ${{ matrix.coverage && !matrix.profiling && !matrix.experimental }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: ${{ env.extensions }}
coverage: xdebug
- name: Install PHP (profiling)
if: ${{ !matrix.coverage && matrix.profiling && !matrix.experimental }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: ${{ env.extensions }}, blackfire, :xdebug
coverage: none
tools: blackfire
env:
BLACKFIRE_SERVER_ID: ${{ secrets.BLACKFIRE_SERVER_ID }}
BLACKFIRE_SERVER_TOKEN: ${{ secrets.BLACKFIRE_SERVER_TOKEN }}
BLACKFIRE_CLIENT_ID: ${{ secrets.BLACKFIRE_CLIENT_ID }}
BLACKFIRE_CLIENT_TOKEN: ${{ secrets.BLACKFIRE_CLIENT_TOKEN }}
- name: Install PHP (experimental with JIT)
if: ${{ !matrix.coverage && !matrix.profiling && matrix.experimental }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: ${{ env.extensions }}
ini-values: opcache.enable_cli=1, opcache.jit=tracing, opcache.jit_buffer_size=64M
coverage: none
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: |
vendor
tests/fixtures/website/themes
key: composer-${{ runner.os }}-php-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
restore-keys: composer-${{ runner.os }}-php-${{ matrix.php }}-
- name: Validate composer.json
if: steps.composer-cache.outputs.cache-hit != 'true'
run: |
composer validate
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: |
composer install --prefer-dist --no-progress
- name: Run code analyse
run: |
composer run-script code:analyse:gh
- name: Run code style checker
run: |
composer run-script code:style
- name: Run build test
if: ${{ !matrix.coverage && !matrix.profiling }}
run: |
composer run-script test
- name: Run build test (coverage)
if: ${{ matrix.coverage && !matrix.profiling && !matrix.experimental }}
run: |
composer run-script test:coverage
- name: Run build test (profiling)
if: ${{ !matrix.coverage && matrix.profiling && !matrix.experimental }}
env:
APP_ENV: prod
APP_DEBUG: 0
run: blackfire run php vendor/bin/phpunit -c ./ --testsuite=IntegrationTests
- name: Upload coverage results to Coveralls
if: ${{ matrix.coverage && !matrix.profiling && !matrix.experimental }}
continue-on-error: true
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
composer run-script test:coverage:install
composer run-script test:coverage:upload
- name: Build skeleton site from phar
if: ${{ !matrix.coverage && !matrix.profiling }}
run: |
composer run-script test:phar