fix unit tests #50
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: [ master ] | |
pull_request: | |
branches: [ "*" ] | |
jobs: | |
test: | |
name: "PHPUnit: MW ${{ matrix.mw }}, PHP ${{ matrix.php }} (TYPE ${{ matrix.type }})" | |
strategy: | |
matrix: | |
include: | |
- mw: 'REL1_35' | |
php: 7.4 | |
type: normal | |
experimental: false | |
- mw: 'REL1_37' | |
php: 7.4 | |
type: normal | |
experimental: false | |
- mw: 'REL1_38' | |
php: 7.4 | |
type: normal | |
experimental: false | |
- mw: 'REL1_39' | |
php: 7.4 | |
type: coverage | |
experimental: false | |
- mw: 'REL1_39' | |
php: 8.1 | |
type: normal | |
experimental: false | |
- mw: 'master' | |
php: 7.4 | |
type: normal | |
experimental: true | |
- mw: 'master' | |
php: 8.1 | |
type: normal | |
experimental: true | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.experimental }} | |
defaults: | |
run: | |
working-directory: mediawiki | |
env: | |
MW_ROOT: mediawiki | |
TYPE: ${{ matrix.type }} | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: mbstring, intl | |
tools: composer | |
- name: Cache MediaWiki | |
id: cache-mediawiki | |
uses: actions/cache@v3 | |
with: | |
path: | | |
mediawiki | |
!mediawiki/extensions/ | |
!mediawiki/vendor/ | |
key: mw_${{ matrix.mw }}-php${{ matrix.php }} | |
- name: Cache Composer cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.composer/cache | |
key: composer-php${{ matrix.php }} | |
- uses: actions/checkout@v3 | |
with: | |
path: EarlyCopy | |
- name: Install MediaWiki | |
if: steps.cache-mediawiki.outputs.cache-hit != 'true' | |
working-directory: ~ | |
run: bash EarlyCopy/.github/workflows/installWiki.sh ${{ matrix.mw }} BootstrapComponents | |
- uses: actions/checkout@v3 | |
with: | |
path: mediawiki/extensions/BootstrapComponents | |
- name: Composer update | |
run: composer update | |
- name: Upload images | |
working-directory: ~ | |
run: bash EarlyCopy/.github/workflows/uploadImages.sh | |
- if: env.TYPE != 'coverage' | |
name: Run PHPUnit w/o coverage | |
run: php tests/phpunit/phpunit.php -c extensions/BootstrapComponents/ --testsuite bootstrap-components-unit | |
- if: env.TYPE == 'coverage' | |
name: Run PHPUnit w/ coverage | |
run: php tests/phpunit/phpunit.php -c extensions/BootstrapComponents/ --testsuite bootstrap-components-unit --coverage-clover coverage.clover | |
- if: env.TYPE == 'coverage' | |
name: upload coverage report | |
working-directory: ~ | |
run: bash EarlyCopy/.github/workflows/uploadCoverageReport.sh |