Changeset 58097 for trunk/.github/workflows/phpunit-tests.yml
- Timestamp:
- 05/04/2024 07:23:31 PM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/phpunit-tests.yml
r57985 r58097 49 49 db-type: [ 'mysql' ] 50 50 db-version: [ '5.7', '8.0', '8.1', '8.2', '8.3' ] 51 tests-domain: [ 'example.org' ] 51 52 multisite: [ false, true ] 52 53 memcached: [ false ] … … 58 59 db-type: 'mysql' 59 60 db-version: '5.7' 61 tests-domain: 'example.org' 60 62 multisite: false 61 63 memcached: true … … 64 66 db-type: 'mysql' 65 67 db-version: '5.7' 68 tests-domain: 'example.org' 66 69 multisite: true 67 70 memcached: true 71 # Include jobs with a port on the test domain for both single and multisite. 72 - os: ubuntu-latest 73 php: '7.4' 74 db-type: 'mysql' 75 db-version: '5.7' 76 tests-domain: 'example.org:8889' 77 multisite: false 78 memcached: false 79 - os: ubuntu-latest 80 php: '7.4' 81 db-type: 'mysql' 82 db-version: '5.7' 83 tests-domain: 'example.org:8889' 84 multisite: true 85 memcached: false 68 86 # Report test results to the Host Test Results. 69 87 - os: ubuntu-latest … … 71 89 db-type: 'mysql' 72 90 db-version: '5.7' 91 tests-domain: 'example.org' 73 92 multisite: false 74 93 memcached: false … … 82 101 memcached: ${{ matrix.memcached }} 83 102 phpunit-config: ${{ matrix.multisite && 'tests/phpunit/multisite.xml' || 'phpunit.xml.dist' }} 103 tests-domain: ${{ matrix.tests-domain }} 84 104 report: ${{ matrix.report || false }} 85 105
Note: See TracChangeset
for help on using the changeset viewer.