-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from catalyst/issue23
issue #23: migrate github CI to catalyst workflows
- Loading branch information
Showing
2 changed files
with
42 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters