Let's run the integration tests using the generated PHAR #510
Workflow file for this run
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
name: Moodle Plugin CI | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
selftest: | |
name: CI test (make validate) | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Setup PHP 7.4 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 7.4 | |
# We want to verify that xdebug works for coverage. Once we only support | |
# Moodle 3.10/PHPUnit 8 and up, we can switch our tests to pcov too. | |
coverage: xdebug | |
- name: Initialise | |
run: make init | |
- name: Validate | |
run: make validate | |
coverage: | |
if: github.repository == 'moodlehq/moodle-plugin-ci' | |
name: Code coverage (codecov) | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Setup PHP 7.4 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 7.4 | |
# We want to verify that xdebug works for coverage. Once we only support | |
# Moodle 3.10/PHPUnit 8 and up, we can switch our tests to pcov too. | |
coverage: xdebug | |
- name: Initialise | |
run: make init | |
- name: Generate PHPUnit coverage | |
run: make coverage-phpunit | |
- name: Upload coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./build/logs/clover.xml | |
verbose: true | |
citest: | |
name: Integration tests | |
needs: selftest | |
runs-on: ubuntu-22.04 | |
services: | |
postgres: | |
image: postgres:13 | |
env: | |
POSTGRES_USER: 'postgres' | |
POSTGRES_HOST_AUTH_METHOD: 'trust' | |
# Health check to wait for postgres to start. | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- php: '8.2' | |
moodle-branch: 'master' | |
- php: '8.2' | |
moodle-branch: 'MOODLE_402_STABLE' | |
- php: '8.1' | |
moodle-branch: 'MOODLE_401_STABLE' | |
- php: '8.0' | |
moodle-branch: 'MOODLE_400_STABLE' | |
- php: '8.0' | |
moodle-branch: 'MOODLE_311_STABLE' | |
- php: '7.4' | |
moodle-branch: 'MOODLE_310_STABLE' | |
- php: '7.4' | |
moodle-branch: 'MOODLE_39_STABLE' | |
- php: '7.4' | |
moodle-branch: 'MOODLE_38_STABLE' | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Setup PHP ${{ matrix.php }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: pgsql, zip, gd, xmlrpc, soap | |
ini-values: max_input_vars=5000 | |
# We want to verify that xdebug works for coverage. Once we only support | |
# Moodle 3.10/PHPUnit 8 and up, we can switch our tests to pcov too. | |
coverage: xdebug | |
- name: Initialise moodle-plugin-ci | |
run: | | |
make init | |
cp -R tests/Fixture/moodle-local_ci ../moodle-local_ci | |
echo $(cd bin; pwd) >> $GITHUB_PATH | |
echo $(cd vendor/bin; pwd) >> $GITHUB_PATH | |
echo "CI_BUILD_DIR="$(cd ../moodle-local_ci; pwd) >> $GITHUB_ENV | |
# PHPUnit depends on en_AU.UTF-8 locale | |
sudo locale-gen en_AU.UTF-8 | |
# Define NVM_DIR pointing to nvm installation. | |
echo "NVM_DIR=$HOME/.nvm" >> $GITHUB_ENV | |
- name: Install moodle-plugin-ci | |
run: moodle-plugin-ci install -vvv | |
env: | |
DB: 'pgsql' | |
MOODLE_BRANCH: ${{ matrix.moodle-branch }} | |
IGNORE_PATHS: 'ignore' | |
IGNORE_NAMES: 'ignore_name.php' | |
MUSTACHE_IGNORE_NAMES: 'broken.mustache' | |
- name: Run Integration tests | |
env: | |
MOODLE_BRANCH: ${{ matrix.moodle-branch }} | |
run: | | |
moodle-plugin-ci phplint | |
moodle-plugin-ci phpcpd | |
moodle-plugin-ci phpmd | |
moodle-plugin-ci phpcs | |
moodle-plugin-ci phpcbf | |
moodle-plugin-ci validate | |
moodle-plugin-ci savepoints | |
moodle-plugin-ci mustache | |
moodle-plugin-ci grunt || [[ "$MOODLE_BRANCH" =~ MOODLE_3[0-9]+_STABLE ]] # Fixtures only compatible with Moodle >= 4.0 | |
moodle-plugin-ci phpdoc | |
moodle-plugin-ci phpunit --verbose --coverage-text --fail-on-warning | |
moodle-plugin-ci behat --profile default | |
moodle-plugin-ci behat --profile chrome | |
buildphar: | |
name: Build moodle-plugin-ci.phar | |
needs: selftest | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Setup PHP 8.1 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
ini-values: phar.readonly = false | |
- name: Build PHAR | |
run: | | |
make build | |
php build/moodle-plugin-ci.phar list | |
- name: Upload PHAR for later use | |
uses: actions/upload-artifact@v3 | |
with: | |
name: phar | |
path: build/moodle-plugin-ci.phar | |
phartest: | |
name: Integration tests (PHAR) | |
needs: buildphar | |
runs-on: ubuntu-22.04 | |
services: | |
postgres: | |
image: postgres:13 | |
env: | |
POSTGRES_USER: 'postgres' | |
POSTGRES_HOST_AUTH_METHOD: 'trust' | |
# Health check to wait for postgres to start. | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# Each supported PHP version once. That's enough. | |
- php: '8.2' | |
moodle-branch: 'master' | |
- php: '8.1' | |
moodle-branch: 'MOODLE_402_STABLE' | |
- php: '8.0' | |
moodle-branch: 'MOODLE_401_STABLE' | |
- php: '7.4' | |
moodle-branch: 'MOODLE_400_STABLE' | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Setup PHP ${{ matrix.php }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: pgsql, zip, gd, xmlrpc, soap | |
ini-values: max_input_vars=5000 | |
coverage: pcov | |
- name: Initialise moodle-plugin-ci | |
run: | | |
make init | |
cp -R tests/Fixture/moodle-local_ci ../moodle-local_ci | |
echo $(cd bin; pwd) >> $GITHUB_PATH | |
echo $(cd vendor/bin; pwd) >> $GITHUB_PATH | |
echo "CI_BUILD_DIR="$(cd ../moodle-local_ci; pwd) >> $GITHUB_ENV | |
# PHPUnit depends on en_AU.UTF-8 locale | |
sudo locale-gen en_AU.UTF-8 | |
# Define NVM_DIR pointing to nvm installation. | |
echo "NVM_DIR=$HOME/.nvm" >> $GITHUB_ENV | |
- name: Download built PHAR | |
uses: actions/download-artifact@v3 | |
with: | |
name: phar | |
path: build | |
- name: Install moodle-plugin-ci (PHAR) | |
run: build/moodle-plugin-ci.phar install -vvv | |
env: | |
DB: 'pgsql' | |
MOODLE_BRANCH: ${{ matrix.moodle-branch }} | |
IGNORE_PATHS: 'ignore' | |
IGNORE_NAMES: 'ignore_name.php' | |
MUSTACHE_IGNORE_NAMES: 'broken.mustache' | |
- name: Run Integration tests (PHAR) | |
env: | |
MOODLE_BRANCH: ${{ matrix.moodle-branch }} | |
run: | | |
build/moodle-plugin-ci.phar phplint | |
build/moodle-plugin-ci.phar phpcpd | |
build/moodle-plugin-ci.phar phpmd | |
build/moodle-plugin-ci.phar phpcs | |
build/moodle-plugin-ci.phar phpcbf | |
build/moodle-plugin-ci.phar validate | |
build/moodle-plugin-ci.phar savepoints | |
build/moodle-plugin-ci.phar mustache | |
build/moodle-plugin-ci.phar grunt | |
build/moodle-plugin-ci.phar phpdoc | |
build/moodle-plugin-ci.phar phpunit --verbose --coverage-text --fail-on-warning | |
build/moodle-plugin-ci.phar behat --profile default | |
build/moodle-plugin-ci.phar behat --profile chrome |