-
-
Notifications
You must be signed in to change notification settings - Fork 27
190 lines (168 loc) · 5.5 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
178
179
180
181
182
183
184
185
186
187
188
189
190
name: 'Tests'
on:
workflow_dispatch:
push:
branches:
- master
paths-ignore:
- 'docs/**'
- '.github/**'
- 'scripts/**'
pull_request:
paths-ignore:
- 'docs/**'
- '.github/**'
- 'scripts/**'
jobs:
test:
name: PHP ${{ join(matrix.*, ' ') }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ join(matrix.type) == 'experimental' }}
env:
extensions: :psr, mbstring, intl, gettext, fileinfo, gd, sodium, exif
ext-cache-key: cache-ext-v1
strategy:
fail-fast: false
matrix:
php: ['8.1', '8.2', '8.3', '8.4']
os: [ubuntu-latest, macos-latest, windows-latest]
type: ['']
exclude:
# excluded for code coverage
- php: '8.1'
os: 'ubuntu-latest'
type: ''
# excluded for code profiling
- php: '8.2'
os: 'ubuntu-latest'
type: ''
include:
# included for code coverage
- php: '8.1'
os: 'ubuntu-latest'
type: 'coverage'
# included for code profiling
- php: '8.2'
os: 'ubuntu-latest'
type: 'profiling'
# experimental
- php: '8.4'
os: 'ubuntu-latest'
type: 'experimental'
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install optimizers (Ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo apt-get update -y
sudo apt-get install -y jpegoptim pngquant gifsicle optipng libjpeg-progs webp libavif-bin
sudo npm install -g svgo
- name: Install optimizers (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew update || brew update
brew install jpegoptim
brew install pngquant
brew install gifsicle
brew install optipng
brew install webp
brew install libavif
npm install -g svgo
- 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@v4
with:
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}
restore-keys: ${{ steps.extcache.outputs.key }}
- name: Install PHP (standart)
if: ${{ join(matrix.type) == '' }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: ${{ env.extensions }}
coverage: none
- name: Install PHP (coverage)
if: ${{ join(matrix.type) == 'coverage' }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: ${{ env.extensions }}
coverage: xdebug
- name: Install PHP (profiling)
if: ${{ join(matrix.type) == 'profiling' }}
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)
if: ${{ join(matrix.type) == '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@v4
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: ${{ contains(matrix.type, '') || contains(matrix.type, 'experimental') }}
run: |
composer run-script test
- name: Run build test (coverage)
if: ${{ contains(matrix.type, 'coverage') }}
run: |
composer run-script test:coverage
- name: Run build test (profiling)
if: ${{ contains(matrix.type, 'profiling') }}
env:
APP_ENV: prod
APP_DEBUG: 0
run: blackfire run php vendor/bin/phpunit -c ./ --testsuite=IntegrationTests
continue-on-error: true
- name: Upload coverage results to Coveralls
if: ${{ contains(matrix.type, 'coverage') }}
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: ${{ contains(matrix.type, '') || contains(matrix.type, 'experimental') }}
run: |
composer run-script test:phar