MDL-74905 ci: travis and gha, raise to agreed requirements
Basically, we only need to change: - PHP 8.0 - MySQL 8.0 - PostgreSQL 13 Also, remove any php-xmlrpc installation because they aren't needed since Moodle 4.1. Finally, ensure that we aren't using mysql bin logs ever, because they are huge and can make the 1Gb tmpfs to become full. This is specifically needed for MySQL 8.0, because it comes with bin logs enabled by default. We have forked the mysql-action to achieve that: https://github.com/moodlehq/mysql-action Worth blaming travis because, after PG 11 and 12 using port 5433, now they are back (in PG 13) to port 5432. Surely there is some logic behind the undocumented ping-pong but...
This commit is contained in:
@@ -55,31 +55,32 @@ jobs:
|
||||
matrix:
|
||||
include:
|
||||
- os: ubuntu-22.04
|
||||
php: 7.4
|
||||
php: 8.0
|
||||
extensions:
|
||||
db: mysqli
|
||||
- os: ubuntu-22.04
|
||||
php: 8.0
|
||||
db: pgsql
|
||||
extensions: xmlrpc-beta
|
||||
|
||||
steps:
|
||||
- name: Setting up DB mysql
|
||||
if: ${{ matrix.db == 'mysqli' }}
|
||||
uses: johanmeiring/mysql-action@tmpfs-patch
|
||||
uses: moodlehq/mysql-action@v1
|
||||
with:
|
||||
collation server: utf8mb4_bin
|
||||
mysql version: 5.7
|
||||
mysql version: 8.0
|
||||
mysql database: test
|
||||
mysql user: test
|
||||
mysql password: test
|
||||
use tmpfs: true
|
||||
tmpfs size: '1024M'
|
||||
extra conf: --skip-log-bin
|
||||
|
||||
- name: Setting up DB pgsql
|
||||
if: ${{ matrix.db == 'pgsql' }}
|
||||
uses: m4nu56/postgresql-action@v1
|
||||
with:
|
||||
postgresql version: 12
|
||||
postgresql version: 13
|
||||
postgresql db: test
|
||||
postgresql user: test
|
||||
postgresql password: test
|
||||
|
||||
Reference in New Issue
Block a user