The `Homepage saves change tags for unstructured task edits made via VisualEditor` is broken (or flaky?) on wmf.26. See e.g.
https://gerrit.wikimedia.org/r/c/mediawiki/skins/Vector/+/827534/
https://gerrit.wikimedia.org/r/c/mediawiki/extensions/ConfirmEdit/+/827203/
>>! In T316596#8197682, @taavi wrote:
> Noting that only the PHP 7.4 (not 7.2) job is failing, and we have this specific hack hardcoding 7.2:
> ```name=tests/selenium/wdio.conf.js
> // This is needed in Quibble + Apache (T225218) because we use supervisord to control
> // the php-fpm service, and with supervisord you need to restart the php-fpm service
> // in order to load updated php code.
> if ( process.env.QUIBBLE_APACHE ) {
> await childProcess.spawnSync(
> 'service',
> [ 'php7.2-fpm', 'restart' ]
> );
> // Super ugly hack: Run this twice because sometimes the first invocation hangs.
> await childProcess.spawnSync(
> 'service',
> [ 'php7.2-fpm', 'restart' ]
> );
> }
> ```