Fixed unit test incompatibility with PHPUnit 9.5+ #3
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: CI | |
on: | |
push: | |
branches: [ '**' ] | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
pull_request: | |
branches: [ '**' ] | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
jobs: | |
silverstripe_5_php81: | |
name: "Silverstripe 5.0 | PHP 8.1" | |
runs-on: ubuntu-latest | |
env: | |
php_version: 8.1 | |
php_extensions: ctype, dom, fileinfo, hash, intl, mbstring, session, simplexml, tokenizer, xml, pdo, mysqli, gd, zip | |
services: | |
mysql: | |
image: mysql:8.0 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: false | |
MYSQL_ROOT_PASSWORD: testpassword | |
MYSQL_DATABASE: test_db | |
ports: | |
- 3306/tcp | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP Extension Cache | |
id: cache-env | |
uses: shivammathur/cache-extensions@v1 | |
with: | |
php-version: ${{ env.php_version }} | |
extensions: ${{ env.php_extensions }} | |
key: php81-ext-cache-${{ hashFiles('.github/workflows/ci.yml') }} | |
- name: Cache PHP Extensions | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.cache-env.outputs.dir }} | |
key: ${{ steps.cache-env.outputs.key }} | |
restore-keys: ${{ steps.cache-env.outputs.key }} | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ env.php_version }} | |
extensions: ${{ env.php_extensions }} | |
ini-values: log_errors=On, error_log="${{github.workspace}}/artifacts/php_errors.log" | |
coverage: none | |
tools: composer:v2 | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-ss5-php81-${{ hashFiles('**/composer.json') }}-${{ hashFiles('.github/workflows/ci.yml') }} | |
restore-keys: ${{ runner.os }}-composer-ss5-php81- | |
- name: Install Composer dependencies | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
composer self-update --ansi || true | |
if [[ $GITHUB_ACCESS_TOKEN ]]; then composer config --ansi -g github-oauth.github.com $GITHUB_ACCESS_TOKEN; fi | |
composer config allow-plugins.composer/installers true | |
composer config allow-plugins.silverstripe/recipe-plugin true | |
composer config allow-plugins.silverstripe/vendor-plugin true | |
composer require silverstripe/versioned 2.0.* | |
composer install --verbose --no-interaction --no-progress --no-suggest --optimize-autoloader --ansi | |
- name: Configure Environment | |
run: | | |
cp tests/utils/actions.env.template .env | |
mkdir artifacts | |
- name: Perform PHPUnit Tests | |
env: | |
SS_DATABASE_PORT: ${{ job.services.mysql.ports['3306'] }} | |
run: vendor/bin/phpunit --colors=always --printer WebbuildersGroup\\GridFieldDeletedItems\\Tests\\Bootstrap\\GitHubActionsAnnotatorPrinter | |
silverstripe_413_php80: | |
name: "Silverstripe 4.13 | PHP 8.0" | |
runs-on: ubuntu-latest | |
env: | |
php_version: 8.0 | |
php_extensions: ctype, dom, fileinfo, hash, intl, mbstring, session, simplexml, tokenizer, xml, pdo, mysqli, gd, zip | |
services: | |
mysql: | |
image: mysql:5.7 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: false | |
MYSQL_ROOT_PASSWORD: testpassword | |
MYSQL_DATABASE: test_db | |
ports: | |
- 3306/tcp | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP Extension Cache | |
id: cache-env | |
uses: shivammathur/cache-extensions@v1 | |
with: | |
php-version: ${{ env.php_version }} | |
extensions: ${{ env.php_extensions }} | |
key: php80-ext-cache-${{ hashFiles('.github/workflows/ci.yml') }} | |
- name: Cache PHP Extensions | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.cache-env.outputs.dir }} | |
key: ${{ steps.cache-env.outputs.key }} | |
restore-keys: ${{ steps.cache-env.outputs.key }} | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ env.php_version }} | |
extensions: ${{ env.php_extensions }} | |
ini-values: log_errors=On, error_log="${{github.workspace}}/artifacts/php_errors.log" | |
coverage: none | |
tools: composer:v2 | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-ss413-php80-${{ hashFiles('**/composer.json') }}-${{ hashFiles('.github/workflows/ci.yml') }} | |
restore-keys: ${{ runner.os }}-composer-ss413-php80- | |
- name: Install Composer dependencies | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
composer self-update --ansi || true | |
if [[ $GITHUB_ACCESS_TOKEN ]]; then composer config --ansi -g github-oauth.github.com $GITHUB_ACCESS_TOKEN; fi | |
composer config allow-plugins.composer/installers true | |
composer config allow-plugins.silverstripe/recipe-plugin true | |
composer config allow-plugins.silverstripe/vendor-plugin true | |
composer require silverstripe/versioned 1.13.* | |
composer install --verbose --no-interaction --no-progress --no-suggest --optimize-autoloader --ansi | |
- name: Configure Environment | |
run: | | |
cp tests/utils/actions.env.template .env | |
mkdir artifacts | |
- name: Perform PHPUnit Tests | |
env: | |
SS_DATABASE_PORT: ${{ job.services.mysql.ports['3306'] }} | |
run: vendor/bin/phpunit --colors=always --printer WebbuildersGroup\\GridFieldDeletedItems\\Tests\\Bootstrap\\GitHubActionsAnnotatorPrinter | |
silverstripe_413_php74: | |
name: "Silverstripe 4.13 | PHP 7.4" | |
runs-on: ubuntu-latest | |
env: | |
php_version: 7.4 | |
php_extensions: ctype, dom, fileinfo, hash, intl, mbstring, session, simplexml, tokenizer, xml, pdo, mysqli, gd, zip | |
services: | |
mysql: | |
image: mysql:5.7 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: false | |
MYSQL_ROOT_PASSWORD: testpassword | |
MYSQL_DATABASE: test_db | |
ports: | |
- 3306/tcp | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP Extension Cache | |
id: cache-env | |
uses: shivammathur/cache-extensions@v1 | |
with: | |
php-version: ${{ env.php_version }} | |
extensions: ${{ env.php_extensions }} | |
key: php74-ext-cache-${{ hashFiles('.github/workflows/ci.yml') }} | |
- name: Cache PHP Extensions | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.cache-env.outputs.dir }} | |
key: ${{ steps.cache-env.outputs.key }} | |
restore-keys: ${{ steps.cache-env.outputs.key }} | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ env.php_version }} | |
extensions: ${{ env.php_extensions }} | |
ini-values: log_errors=On, error_log="${{github.workspace}}/artifacts/php_errors.log" | |
coverage: none | |
tools: composer:v1 | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-ss413-php74-${{ hashFiles('**/composer.json') }}-${{ hashFiles('.github/workflows/ci.yml') }} | |
restore-keys: ${{ runner.os }}-composer-ss413-php74- | |
- name: Install Composer dependencies | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
composer self-update --ansi || true | |
if [[ $GITHUB_ACCESS_TOKEN ]]; then composer config --ansi -g github-oauth.github.com $GITHUB_ACCESS_TOKEN; fi | |
composer require silverstripe/versioned 1.13.* | |
composer install --verbose --no-interaction --no-progress --no-suggest --optimize-autoloader --ansi | |
- name: Configure Environment | |
run: | | |
cp tests/utils/actions.env.template .env | |
mkdir artifacts | |
- name: Perform PHPUnit Tests | |
env: | |
SS_DATABASE_PORT: ${{ job.services.mysql.ports['3306'] }} | |
run: vendor/bin/phpunit --colors=always --printer WebbuildersGroup\\GridFieldDeletedItems\\Tests\\Bootstrap\\GitHubActionsAnnotatorPrinter | |
phpcs: | |
name: "PHP_CodeSniffer" | |
runs-on: ubuntu-latest | |
env: | |
php_version: 8.0 | |
php_extensions: ctype, dom, fileinfo, hash, intl, mbstring, session, simplexml, tokenizer, xml, pdo, mysqli, gd, zip | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP Extension Cache | |
id: cache-env | |
uses: shivammathur/cache-extensions@v1 | |
with: | |
php-version: ${{ env.php_version }} | |
extensions: ${{ env.php_extensions }} | |
key: php80-ext-cache-${{ hashFiles('.github/workflows/ci.yml') }} | |
- name: Cache PHP Extensions | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.cache-env.outputs.dir }} | |
key: ${{ steps.cache-env.outputs.key }} | |
restore-keys: ${{ steps.cache-env.outputs.key }} | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ env.php_version }} | |
extensions: ${{ env.php_extensions }} | |
ini-values: log_errors=On, error_log="${{github.workspace}}/artifacts/php_errors.log" | |
coverage: none | |
tools: composer:v2 | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-phpcs-${{ hashFiles('.github/workflows/ci.yml') }} | |
restore-keys: ${{ runner.os }}-composer-phpcs- | |
- name: Install Composer dependencies | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
rm composer.json | |
composer self-update --ansi || true | |
if [[ $GITHUB_ACCESS_TOKEN ]]; then composer config --ansi -g github-oauth.github.com $GITHUB_ACCESS_TOKEN; fi | |
composer require squizlabs/php_codesniffer ~3.4 | |
composer install --verbose --no-interaction --no-progress --no-suggest --optimize-autoloader --ansi | |
mkdir artifacts | |
- name: Validate Code Style | |
run: vendor/bin/phpcs --colors --report=full --report-checkstyle=artifacts/phpcs.xml | |
- name: Annotate Code Style Issues | |
if: failure() | |
run: (test -f artifacts/phpcs.xml && echo "::add-matcher::.github/matchers/phpcs.json" && cat artifacts/phpcs.xml && echo "::remove-matcher owner=phpcs::") |