Skip to content

Commit

Permalink
Refresh CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
mackensen committed Mar 7, 2024
1 parent c9303bf commit e57ad5d
Showing 1 changed file with 58 additions and 43 deletions.
101 changes: 58 additions & 43 deletions .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,33 @@
name: Moodle Plugin CI
on:
push:
branches: [ 'main' ]
branches:
- '*'
pull_request:
branches: [ 'main' ]
branches:
- '*'
schedule:
- cron: '0 8 * * 5'
defaults:
run:
shell: bash -l {0}
jobs:
test:
runs-on: ubuntu-22.04
env:
IGNORE_PATHS: tests/sync_test.php
CODECHECKER_IGNORE_PATHS: tests/sync_test.php,locallib.php
PHPCPD_IGNORE_PATHS: tests/sync_test.php,locallib.php
strategy:
fail-fast: false
matrix:
database: ['pgsql', 'mariadb']
moodle-version: ['MOODLE_37_STABLE', 'MOODLE_38_STABLE', 'MOODLE_39_STABLE', 'MOODLE_310_STABLE', 'master']
operating-system: [ubuntu-latest]
php-versions: ['7.4']
node-versions: ['14.15.0']
exclude:
- {moodle-version: 'MOODLE_37_STABLE', php-versions: '7.4', node-versions: '14.15.0'}
include:
- {moodle-version: 'MOODLE_37_STABLE', php-versions: '7.1', node-versions: '14.15.0', operating-system: 'ubuntu-latest', database: 'mariadb'}
- {moodle-version: 'MOODLE_37_STABLE', php-versions: '7.1', node-versions: '14.15.0', operating-system: 'ubuntu-latest', database: 'pgsql'}
runs-on: ${{ matrix.operating-system }}

services:
postgres:
image: postgres:9.6
image: postgres:13
env:
POSTGRES_USER: 'postgres'
POSTGRES_HOST_AUTH_METHOD: 'trust'
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 3
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
mariadb:
image: mariadb:10
env:
Expand All @@ -62,9 +48,17 @@ jobs:
LDAP_CUSTOM_SCHEMA_FILE: /schema/eduperson.schema
volumes:
- /$(pwd)/tests/fixtures/eduperson.schema:/schema/eduperson.schema

strategy:
fail-fast: false
matrix:
php-versions: ['8.2']
moodle-branch: ['MOODLE_403_STABLE']
database: ['pgsql']

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Check out repository code
uses: actions/checkout@v3
with:
path: plugin

Expand All @@ -73,22 +67,27 @@ jobs:
nvm install ${{ matrix.node-versions }}
nvm use ${{ matrix.node-versions }}
- name: Setup PHP
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, pgsql, mysqli, ldap
tools: phpunit
php-version: ${{ matrix.php }}
extensions: ${{ matrix.extensions }}
ini-values: max_input_vars=5000
coverage: none

- name: Deploy moodle-plugin-ci
- name: Initialise moodle-plugin-ci
run: |
composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^3
# Add dirs to $PATH
echo $(cd ci/bin; pwd) >> $GITHUB_PATH
echo $(cd ci/vendor/bin; pwd) >> $GITHUB_PATH
# PHPUnit depends on en_AU.UTF-8 locale
sudo locale-gen en_AU.UTF-8
echo "NVM_DIR=$HOME/.nvm" >> $GITHUB_ENV
- 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 }}

- name: Install Moodle
run: |
Expand All @@ -103,32 +102,48 @@ jobs:
DB: ${{ matrix.database }}
MOODLE_BRANCH: ${{ matrix.moodle-version }}

- name: phplint
- name: PHP Lint
if: ${{ always() }}
run: moodle-plugin-ci phplint

- name: phpcpd
- name: PHP Copy/Paste Detector
continue-on-error: true # This step will show errors but will not fail
if: ${{ always() }}
run: moodle-plugin-ci phpcpd

- name: phpmd
- name: PHP Mess Detector
continue-on-error: true # This step will show errors but will not fail
if: ${{ always() }}
run: moodle-plugin-ci phpmd

- name: codechecker
- name: Moodle Code Checker
if: ${{ always() }}
run: moodle-plugin-ci codechecker

- name: validate
- name: Moodle PHPDoc Checker
if: ${{ always() }}
run: moodle-plugin-ci phpdoc

- name: Validating
if: ${{ always() }}
run: moodle-plugin-ci validate

- name: savepoints
- name: Check upgrade savepoints
if: ${{ always() }}
run: moodle-plugin-ci savepoints

- name: mustache
- name: Mustache Lint
if: ${{ always() }}
run: moodle-plugin-ci mustache

- name: grunt
run: moodle-plugin-ci grunt
- name: Grunt
if: ${{ always() }}
run: moodle-plugin-ci grunt --max-lint-warnings 0

- name: phpunit
- name: PHPUnit tests
if: ${{ always() }}
run: moodle-plugin-ci phpunit

- name: behat
run: moodle-plugin-ci behat
- name: Behat features
if: ${{ always() }}
run: moodle-plugin-ci behat --profile chrome

0 comments on commit e57ad5d

Please sign in to comment.