Skip to content

Commit

Permalink
Merge pull request #24 from catalyst/issue23
Browse files Browse the repository at this point in the history
issue #23: migrate github CI to catalyst workflows
  • Loading branch information
danmarsden authored Nov 14, 2024
2 parents d1cba12 + 3d05190 commit ecf73e9
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 107 deletions.
148 changes: 41 additions & 107 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,111 +1,45 @@
name: 3.9 and higher branch test

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
# Run this workflow every time a new commit pushed to your repository
# .github/workflows/ci.yml
name: ci

on: [push, pull_request]

jobs:
citest:
name: CI test
runs-on: 'ubuntu-latest'

services:
postgres:
image: postgres
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

mariadb:
image: mariadb:10.5
env:
MYSQL_USER: 'root'
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
ports:
- 3306:3306
options: >-
--health-cmd="mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 3
strategy:
fail-fast: false
matrix:
database: ['pgsql']
moodle-branch: ['MOODLE_38_STABLE', 'MOODLE_311_STABLE']
php: ['7.4']

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

- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: max_input_vars=5000
coverage: none

- 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
run: |
moodle-plugin-ci add-plugin --branch ${{ matrix.moodle-branch }} danmarsden/moodle-mod_attendance
moodle-plugin-ci install -vvv --plugin ./plugin --db-host=127.0.0.1
env:
DB: ${{ matrix.database }}
MOODLE_BRANCH: ${{ matrix.moodle-branch }}

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

- name: Run phpcpd
if: ${{ always() }}
run: moodle-plugin-ci phpcpd || true

- name: Run phpmd
if: ${{ always() }}
run: moodle-plugin-ci phpmd

- name: Run codechecker
if: ${{ always() }}
run: moodle-plugin-ci codechecker

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

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

- name: Run mustache
if: ${{ always() }}
run: moodle-plugin-ci phpcpd

- name: Run grunt
if: ${{ always() }}
run: moodle-plugin-ci grunt

- name: Run behat
if: ${{ always() }}
run: moodle-plugin-ci behat --profile chrome
moodle41:
uses: catalyst/catalyst-moodle-workflows/.github/workflows/ci.yml@main
with:
disable_phpunit: true
moodle_branches: MOODLE_401_STABLE
extra_plugin_runners:
moodle-plugin-ci add-plugin danmarsden/moodle-mod_attendance --branch MOODLE_401_STABLE

moodle42:
uses: catalyst/catalyst-moodle-workflows/.github/workflows/ci.yml@main
with:
disable_phpunit: true
moodle_branches: MOODLE_402_STABLE
extra_plugin_runners:
moodle-plugin-ci add-plugin danmarsden/moodle-mod_attendance --branch MOODLE_402_STABLE

moodle43:
uses: catalyst/catalyst-moodle-workflows/.github/workflows/ci.yml@main
with:
disable_phpunit: true
moodle_branches: MOODLE_403_STABLE
extra_plugin_runners:
moodle-plugin-ci add-plugin danmarsden/moodle-mod_attendance --branch MOODLE_403_STABLE

moodle44:
uses: catalyst/catalyst-moodle-workflows/.github/workflows/ci.yml@main
with:
disable_phpunit: true
moodle_branches: MOODLE_404_STABLE
extra_plugin_runners:
moodle-plugin-ci add-plugin danmarsden/moodle-mod_attendance --branch MOODLE_404_STABLE

moodle45:
uses: catalyst/catalyst-moodle-workflows/.github/workflows/ci.yml@main
with:
disable_phpunit: true
moodle_branches: MOODLE_405_STABLE
extra_plugin_runners:
moodle-plugin-ci add-plugin danmarsden/moodle-mod_attendance --branch MOODLE_404_STABLE
1 change: 1 addition & 0 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@
$plugin->dependencies = array('mod_attendance' => 2017050208);
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '3.2.6';
$plugin->supported = [401, 405];

0 comments on commit ecf73e9

Please sign in to comment.