-
Notifications
You must be signed in to change notification settings - Fork 13
264 lines (239 loc) · 9.13 KB
/
moodle-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
name: Moodle Plugin CI Tests
# The workflow is triggered on push to the stable branch, main branch, pull requests and every day at 6:30 UTC.
on:
workflow_dispatch:
inputs:
tags:
description: 'Adds an additional tags to the tests. It needs the && to concat other tags and a starting @. Usage: "&&@mtmoodle-x"'
required: false
default: ''
push:
branches:
- stable
- main
pull_request:
branches:
- "*"
schedule:
- cron: "15 6 * * *"
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:13
env:
POSTGRES_USER: "postgres"
POSTGRES_HOST_AUTH_METHOD: "trust"
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
strategy:
fail-fast: false
matrix:
php: ["7.4", "8.0", "8.1", "8.2", "8.3"]
moodle-branch:
[
"MOODLE_38_STABLE",
"MOODLE_39_STABLE",
"MOODLE_311_STABLE",
"MOODLE_400_STABLE",
"MOODLE_401_STABLE",
"MOODLE_402_STABLE",
"MOODLE_403_STABLE",
"MOODLE_404_STABLE",
"MOODLE_405_STABLE",
"main",
]
database: [pgsql]
browser: ["chrome", "firefox"]
exclude:
# Exclude Moodle+PHP incompatible versions
# See: https://docs.moodle.org/dev/Moodle_and_PHP
- moodle-branch: "MOODLE_402_STABLE"
php: "7.4"
- moodle-branch: "MOODLE_403_STABLE"
php: "7.4"
- moodle-branch: "MOODLE_404_STABLE"
php: "7.4"
- moodle-branch: "MOODLE_405_STABLE"
php: "7.4"
- moodle-branch: "main"
php: "7.4"
- moodle-branch: "MOODLE_38_STABLE"
php: "8.0"
- moodle-branch: "MOODLE_39_STABLE"
php: "8.0"
- moodle-branch: "MOODLE_404_STABLE"
php: "8.0"
- moodle-branch: "MOODLE_405_STABLE"
php: "8.0"
- moodle-branch: "main"
php: "8.0"
- moodle-branch: "MOODLE_38_STABLE"
php: "8.1"
- moodle-branch: "MOODLE_39_STABLE"
php: "8.1"
- moodle-branch: "MOODLE_311_STABLE"
php: "8.1"
- moodle-branch: "MOODLE_400_STABLE"
php: "8.1"
- moodle-branch: "MOODLE_38_STABLE"
php: "8.2"
- moodle-branch: "MOODLE_39_STABLE"
php: "8.2"
- moodle-branch: "MOODLE_311_STABLE"
php: "8.2"
- moodle-branch: "MOODLE_400_STABLE"
php: "8.2"
- moodle-branch: "MOODLE_401_STABLE"
php: "8.2"
- moodle-branch: "main"
php: "8.2"
- moodle-branch: "MOODLE_38_STABLE"
php: "8.3"
- moodle-branch: "MOODLE_39_STABLE"
php: "8.3"
- moodle-branch: "MOODLE_311_STABLE"
php: "8.3"
- moodle-branch: "MOODLE_400_STABLE"
php: "8.3"
- moodle-branch: "MOODLE_401_STABLE"
php: "8.3"
- moodle-branch: "MOODLE_402_STABLE"
php: "8.3"
- moodle-branch: "MOODLE_403_STABLE"
php: "8.3"
- moodle-branch: "main"
php: "8.3"
steps:
# 0. Initial step.
- name: Check out repository code
uses: actions/checkout@v4
with:
path: plugin
# 0.1 Log
- name: Set branch name
id: get_branch
run: |
if [ "${{ github.event_name }}" == "pull_request" ]; then
echo "BRANCH_NAME=${{ github.head_ref }}" >> $GITHUB_ENV
else
echo "BRANCH_NAME=${{ github.ref_name }}" >> $GITHUB_ENV
fi
- name: Log info
run: |
curl ifconfig.me
echo "PHP: ${{ matrix.php }}"
echo "Moodle: ${{ matrix.moodle-branch }}"
echo "Database: ${{ matrix.database }}"
echo "Browser: ${{ matrix.browser }}"
echo "Branch: ${{ env.BRANCH_NAME }}"
# 1. Setup PHP using the matrix described on the strategy section.
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: ${{ matrix.extensions }}
ini-values: max_input_vars=10000
coverage: none
- name: Setup Node.js
run: |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
# 2. Setup Moodle-plugin-ci
- name: Initialise moodle-plugin-ci
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=$NVM_DIR >> $GITHUB_ENV
env:
IGNORE_PATHS: classes/privacy,ignore,node_modules,integration,render
COVERAGE: false
CODECHECKER_IGNORE_PATHS: classes/privacy,ignore,node_modules,integration,render
PHPUNIT_IGNORE_PATHS: classes/privacy,ignore,node_modules,integration,render
# 3.1 Install Filter plugin
- name: Add MathType filter plugin
id: install-plugin-filter
continue-on-error: true
run: |
moodle-plugin-ci add-plugin --branch ${{ env.BRANCH_NAME }} wiris/moodle-filter_wiris
- name: Add MathType filter plugin using the main branch
if: steps.install-plugin-filter.outcome != 'success'
run: |
moodle-plugin-ci add-plugin --branch main wiris/moodle-filter_wiris
# 3.2 Install Atto plugin ( Not used )
# 3.3 Install Tiny plugin
- name: Add MathType plugin for TinyMCE
id: install-plugin-tiny
if: contains(fromJson('["MOODLE_401_STABLE", "MOODLE_402_STABLE", "MOODLE_403_STABLE", "MOODLE_404_STABLE"]'), matrix.moodle-branch)
continue-on-error: true
run: |
moodle-plugin-ci add-plugin --branch ${{ env.BRANCH_NAME }} wiris/moodle-tiny_wiris
- name: Add MathType plugin for TinyMCE using the main branch
if: contains(fromJson('["MOODLE_401_STABLE", "MOODLE_402_STABLE", "MOODLE_403_STABLE", "MOODLE_404_STABLE"]'), matrix.moodle-branch) && steps.install-plugin-tiny.outcome != 'success'
run: |
moodle-plugin-ci add-plugin --branch main wiris/moodle-tiny_wiris
- name: Add legacy MathType plugin for TinyMCE
if: contains(fromJson('["MOODLE_38_STABLE", "MOODLE_39_STABLE", "MOODLE_311_STABLE", "MOODLE_400_STABLE"]'), matrix.moodle-branch)
run: |
moodle-plugin-ci add-plugin --branch main wiris/moodle-tinymce_tiny_mce_wiris
# 3.4 Install wirisquizzes
- name: Add Wiris Quizzes plugin
id: install-plugin-quizzes
if: ${{ always() }}
continue-on-error: true
run: |
moodle-plugin-ci add-plugin --branch ${{ env.BRANCH_NAME }} wiris/moodle-qtype_wq
- name: Add Wiris Quizzes plugin using the main branch
if: steps.install-plugin-quizzes.outcome != 'success'
run: |
moodle-plugin-ci add-plugin --branch main wiris/moodle-qtype_wq
# 4. Install Moodle-plugin-ci
- name: Install moodle-plugin-ci
run: moodle-plugin-ci install --plugin ./plugin --db-host=127.0.0.1
env:
DB: ${{ matrix.database }}
MOODLE_BRANCH: ${{ matrix.moodle-branch }}
# 5.1 PHPUnit tests
- name: PHPUnit tests
if: ${{ always() }}
run: moodle-plugin-ci phpunit ./plugin
# 5.2 Moodle Code Validator
- name: Validating
if: ${{ always() }}
run: moodle-plugin-ci validate ./plugin
# 6 Behat tests
# Run Behat tests on all Moodle branches.
# Known tags: @3.x_plugin, @4.0_plugin, @4.x_plugin
# Run Behat tests on all Moodle branches.
- name: Behat features for ( ${{ matrix.moodle-branch }} on PHP ${{ matrix.php }} )
id: behat
if: ${{ always() }}
run: |
case "${{ matrix.moodle-branch }}" in
"MOODLE_38_STABLE"|"MOODLE_39_STABLE"|"MOODLE_311_STABLE")
TAG="@3.x_atto${{ github.event.inputs.tags }}"
;;
"MOODLE_400_STABLE")
TAG="@4.0_atto${{ github.event.inputs.tags }}"
;;
"MOODLE_401_STABLE"|"MOODLE_402_STABLE"|"MOODLE_403_STABLE"|"MOODLE_404_STABLE"|"MOODLE_405_STABLE"|"main")
TAG="@4.x_atto${{ github.event.inputs.tags }}"
;;
*)
TAG="@atto${{ github.event.inputs.tags }}"
;;
esac
moodle-plugin-ci behat --tags=$TAG --profile ${{ matrix.browser }} --auto-rerun=2 --verbose -vvv
- name: Upload Behat Faildump
if: ${{ failure() && steps.behat.outcome == 'failure' }}
uses: actions/upload-artifact@v4
with:
name: Behat Faildump (${{ join(matrix.*, ', ') }})
path: ${{ github.workspace }}/moodledata/behat_dump
retention-days: 1
if-no-files-found: ignore