-
Notifications
You must be signed in to change notification settings - Fork 4
303 lines (274 loc) · 12 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
# src: https://moodlehq.github.io/moodle-plugin-ci
name: CI
on:
workflow_call:
inputs:
accessibility-branch:
description: Branch of accessibility plugin
type: string
default: master
widget-backgroundcolour-branch:
description: Branch of background colour widget, latest release will be used if not provided
type: string
default: ''
widget-fontface-branch:
description: Branch of font face widget, latest release will be used if not provided
type: string
default: ''
widget-fontsize-branch:
description: Branch of font size widget, latest release will be used if not provided
type: string
default: ''
widget-textcolour-branch:
description: Branch of text colour widget, latest release will be used if not provided
type: string
default: ''
widget-additional:
description: Repository name of additional widget to test
type: string
default: ''
widget-additional-name:
description: Additional widget name
type: string
default: ''
widget-additional-ref:
description: Reference of additional widget to test
type: string
default: ''
outputs:
widget-backgroundcolour-branch:
description: Branch of background colour widget
value: ${{ jobs.set-widget-versions.outputs.widget-backgroundcolour-branch }}
widget-fontface-branch:
description: Branch of font face widget
value: ${{ jobs.set-widget-versions.outputs.widget-fontface-branch }}
widget-fontsize-branch:
description: Branch of font size widget
value: ${{ jobs.set-widget-versions.outputs.widget-fontsize-branch }}
widget-textcolour-branch:
description: Branch of text colour widget
value: ${{ jobs.set-widget-versions.outputs.widget-textcolour-branch }}
workflow_dispatch:
inputs:
accessibility-branch:
description: Branch of accessibility plugin
type: string
default: master
widget-backgroundcolour-branch:
description: Branch of background colour widget, latest release will be used if not provided
type: string
default: ''
widget-fontface-branch:
description: Branch of font face widget, latest release will be used if not provided
type: string
default: ''
widget-fontsize-branch:
description: Branch of font size widget, latest release will be used if not provided
type: string
default: ''
widget-textcolour-branch:
description: Branch of text colour widget, latest release will be used if not provided
type: string
default: ''
widget-additional:
description: Repository name of additional widget to test
type: string
default: ''
widget-additional-name:
description: Additional widget name
type: string
default: ''
widget-additional-ref:
description: Reference of additional widget to test
type: string
default: ''
jobs:
default-widget-versions:
name: Get default widget versions
uses: ./.github/workflows/default-widget-versions.yml
set-widget-versions:
name: Set widget versions
needs: default-widget-versions
runs-on: ubuntu-latest
outputs:
widget-backgroundcolour-branch: ${{ steps.get-widgets.outputs.WIDGET-BACKGROUNDCOLOUR-BRANCH }}
widget-fontface-branch: ${{ steps.get-widgets.outputs.WIDGET-FONTFACE-BRANCH }}
widget-fontsize-branch: ${{ steps.get-widgets.outputs.WIDGET-FONTSIZE-BRANCH }}
widget-textcolour-branch: ${{ steps.get-widgets.outputs.WIDGET-TEXTCOLOUR-BRANCH }}
steps:
- id: get-widgets
run: |
echo WIDGET-BACKGROUNDCOLOUR-BRANCH="${{ inputs.widget-backgroundcolour-branch || needs.default-widget-versions.outputs.widget-backgroundcolour-branch }}"
echo WIDGET-FONTFACE-BRANCH="${{ inputs.widget-fontface-branch || needs.default-widget-versions.outputs.widget-fontface-branch }}"
echo WIDGET-FONTSIZE-BRANCH="${{ inputs.widget-fontsize-branch || needs.default-widget-versions.outputs.widget-fontsize-branch }}"
echo WIDGET-TEXTCOLOUR-BRANCH="${{ inputs.widget-textcolour-branch || needs.default-widget-versions.outputs.widget-textcolour-branch }}"
echo WIDGET-BACKGROUNDCOLOUR-BRANCH="${{ inputs.widget-backgroundcolour-branch || needs.default-widget-versions.outputs.widget-backgroundcolour-branch }}" >> $GITHUB_OUTPUT
echo WIDGET-FONTFACE-BRANCH="${{ inputs.widget-fontface-branch || needs.default-widget-versions.outputs.widget-fontface-branch }}" >> $GITHUB_OUTPUT
echo WIDGET-FONTSIZE-BRANCH="${{ inputs.widget-fontsize-branch || needs.default-widget-versions.outputs.widget-fontsize-branch }}" >> $GITHUB_OUTPUT
echo WIDGET-TEXTCOLOUR-BRANCH="${{ inputs.widget-textcolour-branch || needs.default-widget-versions.outputs.widget-textcolour-branch }}" >> $GITHUB_OUTPUT
matrix-test:
name: Test ${{ (matrix.moodle == 'MOODLE_400_STABLE' && 'M4.0') || (matrix.moodle == 'MOODLE_401_STABLE' && 'M4.1') || (matrix.moodle == 'MOODLE_402_STABLE' && 'M4.2') || (matrix.moodle == 'MOODLE_403_STABLE' && 'M4.3') || (matrix.moodle == 'MOODLE_404_STABLE' && 'M4.4') || (matrix.moodle == 'MOODLE_405_STABLE' && 'M4.5') || matrix.moodle }} P${{ matrix.php }} ${{ matrix.db }}
runs-on: ubuntu-latest
needs: set-widget-versions
strategy:
fail-fast: true
matrix:
include:
- moodle: MOODLE_400_STABLE
php: 7.4
db: pgsql
- moodle: MOODLE_401_STABLE
php: 7.4
db: pgsql
- moodle: MOODLE_402_STABLE
php: 8.0
db: pgsql
- moodle: MOODLE_403_STABLE
php: 8.1
db: pgsql
- moodle: MOODLE_404_STABLE
php: 8.3
db: mysqli
- moodle: MOODLE_404_STABLE
php: 8.3
db: pgsql
- moodle: MOODLE_405_STABLE
php: 8.3
db: mysqli
- moodle: MOODLE_405_STABLE
php: 8.3
db: pgsql
services:
mysql:
image: ${{ (matrix.db == 'mysqli' && 'mysql') || '' }}
env:
MYSQL_ALLOW_EMPTY_PASSWORD: true
MYSQL_CHARACTER_SET_SERVER: utf8mb4
MYSQL_COLLATION_SERVER: utf8mb4_unicode_ci
ports:
- 3306:3306
options: ${{ (matrix.db == 'mysqli' && '--health-cmd="mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 3') || '-e SKIP=1' }}
postgres:
image: ${{ (matrix.db == 'pgsql' && 'postgres') || '' }}
env:
POSTGRES_USER: postgres
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
options: ${{ (matrix.db == 'pgsql' && '--health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3') || '-e SKIP=1' }}
steps:
- name: Checkout for Composite Actions
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
sparse-checkout: .github
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions:
ini-values: max_input_vars=5000
# If you are not using code coverage, keep "none". Otherwise, use "pcov" (Moodle 3.10 and up) or "xdebug".
# If you try to use code coverage with "none", it will fallback to phpdbg (which has known problems).
coverage: none
- name: Checkout Accessibility Plugin
uses: actions/checkout@v4
with:
repository: ponlawat-w/moodle-local_accessibility
path: plugin
ref: ${{ inputs.accessibility-branch }}
- name: 'Checkout Widget: backgroundcolour'
uses: actions/checkout@v4
with:
repository: ponlawat-w/moodle-accessibility_backgroundcolour
path: plugin/widgets/backgroundcolour
ref: ${{ inputs.widget-backgroundcolour-branch }}
- name: 'Checkout Widget: fontface'
uses: actions/checkout@v4
with:
repository: ponlawat-w/moodle-accessibility_fontface
path: plugin/widgets/fontface
ref: ${{ inputs.widget-fontface-branch }}
- name: 'Checkout Widget: fontsize'
uses: actions/checkout@v4
with:
repository: ponlawat-w/moodle-accessibility_fontsize
path: plugin/widgets/fontsize
ref: ${{ inputs.widget-fontsize-branch }}
- name: 'Checkout Widget: textcolour'
uses: actions/checkout@v4
with:
repository: ponlawat-w/moodle-accessibility_textcolour
path: plugin/widgets/textcolour
ref: ${{ inputs.widget-textcolour-branch }}
- name: 'Checkout Additional Widget ${{ inputs.widget-additional-name }}'
uses: actions/checkout@v4
if: ${{ inputs.widget-additional }}
with:
repository: ${{ inputs.widget-additional }}
path: plugin/widgets/${{ inputs.widget-additional-name }}
ref: ${{ inputs.widget-additional-ref }}
- name: Initialise moodle-plugin-ci
shell: bash
run: |
composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^4
echo $(cd ci/bin; pwd) >> $GITHUB_PATH
echo $(cd ci/vendor/bin; pwd) >> $GITHUB_PATH
sudo locale-gen en_AU.UTF-8
echo "NVM_DIR=$HOME/.nvm" >> $GITHUB_ENV
- name: Install moodle-plugin-ci
shell: bash
run: moodle-plugin-ci install --plugin ./plugin --db-host 127.0.0.1
env:
DB: ${{ matrix.db }}
MOODLE_BRANCH: ${{ matrix.moodle }}
- name: PHP Lint
if: ${{ !cancelled() }}
shell: bash
run: moodle-plugin-ci phplint -- ./moodle/local/accessibility
- name: PHP Copy/Paste Detector
continue-on-error: true # This step will show errors but will not fail
if: ${{ !cancelled() }}
shell: bash
run: moodle-plugin-ci phpcpd -- ./moodle/local/accessibility
- name: PHP Mess Detector
continue-on-error: true # This step will show errors but will not fail
if: ${{ !cancelled() }}
shell: bash
run: moodle-plugin-ci phpmd -- ./moodle/local/accessibility
- name: Moodle Code Checker
if: ${{ !cancelled() }}
shell: bash
run: moodle-plugin-ci phpcs --max-warnings 0 -- ./moodle/local/accessibility
- name: Moodle PHPDoc Checker
if: ${{ !cancelled() }}
shell: bash
run: moodle-plugin-ci phpdoc --max-warnings 0 -- ./moodle/local/accessibility
- name: Validating
if: ${{ !cancelled() }}
shell: bash
run: moodle-plugin-ci validate -- ./moodle/local/accessibility
- name: Check upgrade savepoints
if: ${{ !cancelled() }}
shell: bash
run: moodle-plugin-ci savepoints -- ./moodle/local/accessibility
- name: Mustache Lint
if: ${{ !cancelled() }}
shell: bash
run: moodle-plugin-ci mustache -- ./moodle/local/accessibility
- name: Grunt
if: ${{ !cancelled() }}
shell: bash
run: moodle-plugin-ci grunt --max-lint-warnings 0 -- ./moodle/local/accessibility
- name: PHPUnit tests
if: ${{ !cancelled() }}
shell: bash
run: moodle-plugin-ci phpunit --fail-on-warning -- ./moodle/local/accessibility
- name: Behat features
if: ${{ !cancelled() }}
shell: bash
run: moodle-plugin-ci behat --profile chrome -- ./moodle/local/accessibility
- name: Mark cancelled jobs as failed.
if: ${{ cancelled() }}
shell: bash
run: exit 1