Travis CI file explained
Below is the .travis.dist.yml file but with comments added to explain what each section is doing. For additional help, see Travis CI’s documentation.
# This is the language of our project.
language: php
# Note that focal (20.04) is the minimum because Node 18 requires it.
dist: focal
# Installs the updated version of PostgreSQL and extra APT packages.
addons:
postgresql: "13"
apt:
packages:
- postgresql-13
- postgresql-client-13
- libonig5
# Ensure DB and docker services are running.
services:
- mysql
- docker
# Cache Composer's and NPM's caches to speed up build times.
cache:
directories:
- $HOME/.composer/cache
- $HOME/.npm
# Determines which versions of PHP to test our project against. Each version
# listed here will create a separate build and run the tests against that
# version of PHP.
php:
- 7.4
- 8.0
- 8.1
# This section sets up the environment variables for the build.
env:
global:
# This line instructs moodle-plugin-ci the version of PostgreSQL being
# used, because, for PG 11 and up, both the user and the port were
# changed by Travis. With that variable, the tool will switch to
# socketed connections instead of localhost ones.
- PGVER=13
# This line determines which version branch of Moodle to test against.
- MOODLE_BRANCH=MOODLE_402_STABLE
# Uncomment this to run Behat tests using the Moodle App.
# - MOODLE_APP=true
# This matrix is used for testing against multiple databases. So for
# each version of PHP being tested, one build will be created for each
# database listed here. EG: for PHP 7.4, one build will be created
# using PHP 7.4 and pgsql. In addition, another build will be created
# using PHP 7.4 and mysqli. Also, note that DB_USER / DB_PASS / DB_NAME
# / DB_HOST / DB_PORT env vars can be used by install to feed the
# corresponding --db-xxxx options.
matrix:
- DB=pgsql
- DB=mysqli
# Optionally, it is possible to specify a different Moodle repo to use
# (https://github.com/moodle/moodle.git is used by default):
# - MOODLE_REPO=https://github.com/username/moodle.git
# Also, note that, for multi-branch scenarios, where the same plugin
# codebase needs to be tested against multiple branches of Moodle,
# it is possible to remove the `php`, `env/global`, and `matrix`
# sections above and just create a `jobs` section explicitly defining
# which `php`, `MOODLE_BRANCH` and `DB` to use, for example:
#
# jobs:
# include:
# - php: 8.0
# env: MOODLE_BRANCH=MOODLE_401_STABLE DB=pgsql
# - php: 8.0
# env: MOODLE_BRANCH=MOODLE_400_STABLE DB=pgsql
# - php: 7.4
# env: MOODLE_BRANCH=MOODLE_311_STABLE DB=mysqli
# ....
# Note: this also enables to add specific env variables (NODE_VERSION,
# EXTRA_PLUGINS...) per job, if you don't want to do it globally.
# This lists steps that are run before the installation step.
before_install:
# Optional line: Only needed if going to run php8 jobs and the plugin
# needs xmlrpc services.
- if [[ ${TRAVIS_PHP_VERSION:0:1} -gt 7 ]]; then pecl install xmlrpc-beta; fi
# Setup a good default max_input_vars value for all runs.
- echo 'max_input_vars=5000' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
# We remove xdebug by default for performance, because we're not checking code coverage.
# If you want to use xdebug for code coverage, remove this line.
- phpenv config-rm xdebug.ini
# To use pcov for code coverage on Moodle 3.10 and up, install it using:
# - pecl install pcov
# Currently we are inside of the clone of your repository. We move up two
# directories to build the project.
- cd ../..
# Install this project into a directory called "ci".
- composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^4
# Update the $PATH so scripts from this project can be called easily.
- export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH"
# This lists steps that are run for installation and setup.
install:
# Run the default install. The overview of what this does:
# - Clone the Moodle project into a directory called moodle.
# - Create a data directory called moodledata.
# - Create Moodle config.php, database, etc.
# - Copy your plugin(s) into Moodle.
# - Run Composer install within Moodle.
# - Install the correct (or configured) version of nodejs/npm using NVM.
# - Run NPM install in Moodle and in your plugin if it has a "package.json".
# - Run "grunt ignorefiles" within Moodle to update ignore file lists.
# - If your plugin has Behat features, then Behat will be setup.
# - If your plugin has unit tests, then PHPUnit will be setup.
- moodle-plugin-ci install
# This lists steps that are run for the purposes of testing. Any of
# these steps can be re-ordered or removed to your liking. And of
# course, you can add any of your own custom steps.
script:
# This step lints your PHP files to check for syntax errors.
- moodle-plugin-ci phplint
# This step runs the PHP Mess Detector on your plugin. This helps to find
# potential problems with your code which can result in
# refactoring opportunities.
- moodle-plugin-ci phpmd
# This step runs the Moodle Code Checker to make sure that your plugin
# conforms to the Moodle coding standards. It is highly recommended
# that you keep this step.
# To fail on warnings use --max-warnings 0
- moodle-plugin-ci phpcs
# This step runs Moodle PHPDoc checker on your plugin.
# To fail on warnings use --max-warnings 0
- moodle-plugin-ci phpdoc
# This step runs some light validation on the plugin file structure
# and code. Validation can be plugin specific.
- moodle-plugin-ci validate
# This step validates your plugin's upgrade steps.
- moodle-plugin-ci savepoints
# This step validates the HTML and Javascript in your Mustache templates.
- moodle-plugin-ci mustache
# This step runs Grunt tasks on the plugin. By default, it tries to run
# tasks relevant to your plugin and Moodle version, but you can run
# specific tasks by passing them as options,
# EG: moodle-plugin-ci grunt -t task1 -t task2
# To fail on eslint warnings use --max-lint-warnings 0
- moodle-plugin-ci grunt
# This step runs the PHPUnit tests of your plugin. If your plugin has
# PHPUnit tests, then it is highly recommended that you keep this step.
- moodle-plugin-ci phpunit
# This step runs the Behat tests of your plugin. If your plugin has
# Behat tests, then it is highly recommended that you keep this step.
# There are few important options that you may want to use:
# - The auto rerun option allows you to rerun failures X number of times,
# default is 2, EG usage: --auto-rerun 3
# - The dump option allows you to print the failure HTML to the console,
# handy for debugging, EG usage: --dump
# - The suite option allows you to set the theme to use for behat test. If
# not specified, the default theme is used, EG usage: --suite boost
# - The profile option allows you to set the browser driver to use,
# default is Firefox. If you need Chrome, set '--profile chrome'.
- moodle-plugin-ci behat