Skip to content

Commit

Permalink
Adapt ci pipeline to 5.0dev requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
srobotta committed Dec 6, 2024
1 parent 1c278c6 commit 1312e03
Showing 1 changed file with 6 additions and 63 deletions.
69 changes: 6 additions & 63 deletions .github/workflows/moodle-plugin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ jobs:

services:
postgres:
image: postgres:13
image: postgres:14
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 3
mariadb:
image: mariadb:10.6
image: mariadb:11.4
env:
MYSQL_USER: 'root'
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
MYSQL_CHARACTER_SET_SERVER: "utf8mb4"
MYSQL_COLLATION_SERVER: "utf8mb4_unicode_ci"
MARIADB_USER: 'root'
MARiADB_ALLOW_EMPTY_PASSWORD: "1"
MARIADB_CHARACTER_SET_SERVER: "utf8mb4"
MARIADB_COLLATION_SERVER: "utf8mb4_unicode_ci"
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 3
Expand All @@ -46,62 +46,6 @@ jobs:
moodle-branch: main
database: mariadb
plugin-ci: ^4
- php: 8.1
moodle-branch: main
database: pgsql
plugin-ci: ^4
- php: 8.1
moodle-branch: main
database: mariadb
plugin-ci: ^4
- php: 8.3
moodle-branch: MOODLE_405_STABLE
database: pgsql
plugin-ci: ^4
- php: 8.3
moodle-branch: MOODLE_405_STABLE
database: mariadb
plugin-ci: ^4
- php: 8.2
moodle-branch: MOODLE_405_STABLE
database: pgsql
plugin-ci: ^4
- php: 8.2
moodle-branch: MOODLE_405_STABLE
database: mariadb
plugin-ci: ^4
- php: 8.1
moodle-branch: MOODLE_405_STABLE
database: pgsql
plugin-ci: ^4
- php: 8.1
moodle-branch: MOODLE_405_STABLE
database: mariadb
plugin-ci: ^4
- php: 8.3
moodle-branch: MOODLE_404_STABLE
database: pgsql
plugin-ci: ^4
- php: 8.3
moodle-branch: MOODLE_404_STABLE
database: mariadb
plugin-ci: ^4
- php: 8.2
moodle-branch: MOODLE_404_STABLE
database: pgsql
plugin-ci: ^4
- php: 8.2
moodle-branch: MOODLE_404_STABLE
database: mariadb
plugin-ci: ^4
- php: 8.1
moodle-branch: MOODLE_404_STABLE
database: pgsql
plugin-ci: ^4
- php: 8.1
moodle-branch: MOODLE_404_STABLE
database: mariadb
plugin-ci: ^4

steps:
- name: Check out repository code
Expand All @@ -113,7 +57,6 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: ${{ matrix.extensions }}
ini-values: max_input_vars=5000
coverage: none

Expand Down

0 comments on commit 1312e03

Please sign in to comment.