-
-
Notifications
You must be signed in to change notification settings - Fork 6
200 lines (165 loc) · 5.5 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
---
# This GitHub Actions workflow uses the same development tools that are also installed locally
# via Composer or PHIVE and calls them using the Composer scripts.
name: CI with Composer scripts
on:
push:
paths:
- '**.php'
- '.github/workflows/ci.yml'
- 'Build/phpunit/FunctionalTests.xml'
- 'Build/phpunit/UnitTests.xml'
- 'composer.json'
branches:
- main
pull_request:
permissions:
contents: read
jobs:
php-lint:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
name: "PHP linter - ${{ matrix.php }}"
steps:
- name: "Checkout code"
uses: actions/checkout@v4
- name: "Setup PHP"
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
coverage: none
- name: "Run PHP lint"
run: find .*.php *.php Classes Configuration Tests -name '*.php' -print0 | xargs -r -0 -n 1 -P 4 php -l
code-quality:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: true
matrix:
command:
- "composer:normalize"
- "composer:psr-verify"
- "php:cs-fixer"
#- "php:sniff"
- "yaml:lint"
- "xliff:lint"
php: [8.1]
name: "Code quality checks"
steps:
- name: "Checkout code"
uses: actions/checkout@v4
- name: "Setup PHP"
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
coverage: none
tools: composer:v2
- name: "Show Composer version"
run: composer --version
- name: "Show the Composer configuration"
run: composer config --global --list
- name: "Cache dependencies installed with composer"
uses: actions/cache@v4
with:
key: "php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}"
path: ~/.cache/composer
restore-keys: "php${{ matrix.php }}-composer-\n"
- name: "Install Composer dependencies"
run: composer install --no-progress
- name: "List Installed Dependencies"
run: composer show -D
- name: "Run command"
run: composer ci:${{ matrix.command }}
unit-tests:
runs-on: ubuntu-latest
timeout-minutes: 5
needs: php-lint
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
typo3: ["^12.4"]
stability: [prefer-lowest, prefer-stable]
# include:
# - typo3: "^13.0"
# php: "8.3"
# stability: prefer-lowest
# - typo3: "^13.0"
# php: "8.3"
# stability: prefer-stable
name: "Unit tests - PHP ${{ matrix.php }} - TYPO3 ${{ matrix.typo3 }} - ${{ matrix.stability }}"
steps:
- name: "Checkout code"
uses: actions/checkout@v4
- name: "Setup PHP"
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
coverage: none
tools: composer:v2
- name: "Show Composer version"
run: composer --version
- name: "Show the Composer configuration"
run: composer config --global --list
- name: "Cache dependencies installed with composer"
uses: actions/cache@v4
with:
key: "php${{ matrix.php }}-typo3${{ matrix.typo3 }}-${{ matrix.stability }}-composer-${{ hashFiles('**/composer.json') }}"
path: ~/.cache/composer
restore-keys: "php${{ matrix.php }}-typo3${{ matrix.typo3 }}-${{ matrix.stability }}-composer-\n"
- name: "Install dependencies"
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: "Run unit tests"
run: composer ci:tests:unit
functional-tests:
runs-on: ubuntu-latest
timeout-minutes: 5
needs: php-lint
env:
TYPO3_PATH_WEB: $PWD/.Build/public
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
typo3: ["^12.4"]
stability: [prefer-lowest, prefer-stable]
# include:
# - typo3: "^13.0"
# php: "8.3"
# stability: prefer-lowest
# - typo3: "^13.0"
# php: "8.3"
# stability: prefer-stable
name: "Functional tests - PHP ${{ matrix.php }} - TYPO3 ${{ matrix.typo3 }} - ${{ matrix.stability }}"
steps:
- name: "Checkout code"
uses: actions/checkout@v4
- name: "Setup PHP"
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
tools: composer:v2
extensions: intl, mbstring, pdo_sqlite
coverage: none
- name: "Show Composer version"
run: composer --version
- name: "Show the Composer configuration"
run: composer config --global --list
- name: "Cache dependencies installed with composer"
uses: actions/cache@v4
with:
key: "php${{ matrix.php }}-typo3${{ matrix.typo3 }}-${{ matrix.stability }}-composer-${{ hashFiles('**/composer.json') }}"
path: ~/.cache/composer
restore-keys: "php${{ matrix.php }}-typo3${{ matrix.typo3 }}-${{ matrix.stability }}-composer-\n"
- name: "Install dependencies"
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: "List installed dependencies"
run: composer show -D
- name: "Run functional tests"
run: |
export typo3DatabaseDriver="pdo_sqlite";
composer ci:tests:functional