mirror of
https://github.com/predis/predis.git
synced 2026-08-27 18:51:07 +00:00
df14e11c3a
* Added support for tests running against redis cluster * Test coverage * Added comment about master nodes * Codestyle fix * Revert changes * Revert DBNUM * Added cluster endpoints to relay tests env configuration * Exclude cluster tests from relay tests environment * Removed TODO comment * Changed cluster image version to unstable * Updated configuration to match unstable cluster * Fixed path * Updated cluster CI configuration * Removed redundant flag * Removed backslash * Updated file path * Updated file path variable * Added docker cluster initialization as additional step * Run cluster tests as separate workflow * Codestyle fixes * Updated exported files * Added additional timeout so cluster image could be settled * Added support for different cluster image, use docker compose for cluster tests CI * Remove unused flag * Removed variable from volume path * Added sleep timeout to allow docker setup after running * Added timeout before tests run * Updated linter settings * Include indent changes for.sh files * Added missing coverage * Revert expected files and mark docker folder as exclusion * Specify folder itself as excluded * Moved cluster tests as separate job in tests.yml * Updated name to contain cluster word --------- Co-authored-by: Chayim <chayim@users.noreply.github.com>
124 lines
3.2 KiB
YAML
124 lines
3.2 KiB
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- v2.**
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
|
|
predis:
|
|
name: PHP ${{ matrix.php }} (Redis ${{ matrix.redis }})
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
php:
|
|
- '7.2'
|
|
- '7.3'
|
|
- '7.4'
|
|
- '8.0'
|
|
- '8.1'
|
|
- '8.2'
|
|
redis:
|
|
- 3
|
|
- 4
|
|
- 5
|
|
- 6
|
|
- 7
|
|
|
|
services:
|
|
redis:
|
|
image: redis:${{ matrix.redis }}
|
|
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
ports:
|
|
- 6379:6379
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup PHP with Composer and extensions
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php }}
|
|
extensions: relay
|
|
coverage: ${{ (matrix.php == '8.1' && matrix.redis == '7') && 'xdebug' || 'none' }}
|
|
|
|
- name: Install Composer dependencies
|
|
uses: ramsey/composer-install@v2
|
|
with:
|
|
dependency-versions: highest
|
|
composer-options: ${{ matrix.php == '8.0' && '--ignore-platform-reqs' || '' }}
|
|
|
|
- name: Run tests
|
|
if: ${{ matrix.php != '8.1' || matrix.redis != '7' }}
|
|
run: vendor/bin/phpunit
|
|
|
|
- name: Run tests with coverage
|
|
if: ${{ matrix.php == '8.1' && matrix.redis == '7' }}
|
|
run: vendor/bin/phpunit --coverage-clover build/logs/clover.xml --coverage-filter ./src
|
|
|
|
- name: Run tests using Relay
|
|
if: ${{ matrix.redis >= '6' }}
|
|
run: vendor/bin/phpunit -c phpunit.relay.xml
|
|
|
|
- name: Send coverage to Coveralls
|
|
env:
|
|
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
if: ${{ env.COVERALLS_REPO_TOKEN && matrix.php == '8.1' && matrix.redis == '7' }}
|
|
run: |
|
|
wget "https://github.com/php-coveralls/php-coveralls/releases/download/v2.5.3/php-coveralls.phar"
|
|
php ./php-coveralls.phar -v
|
|
|
|
predis-cluster:
|
|
|
|
name: PHP ${{ matrix.php }} (Redis Cluster latest)
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
php:
|
|
- '7.2'
|
|
- '7.3'
|
|
- '7.4'
|
|
- '8.0'
|
|
- '8.1'
|
|
- '8.2'
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run redis cluster
|
|
uses: isbang/compose-action@v1.4.1
|
|
with:
|
|
compose-file: "./docker/unstable_cluster/docker-compose.yml"
|
|
|
|
- name: Setup PHP with Composer and extensions
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php }}
|
|
extensions: relay
|
|
coverage: ${{ (matrix.php == '8.1') && 'xdebug' || 'none' }}
|
|
|
|
- name: Install Composer dependencies
|
|
uses: ramsey/composer-install@v2
|
|
with:
|
|
dependency-versions: highest
|
|
composer-options: ${{ matrix.php == '8.0' && '--ignore-platform-reqs' || '' }}
|
|
|
|
- name: Run tests against cluster
|
|
run: |
|
|
sleep 5 # Timeout to make sure that docker image is setup
|
|
vendor/bin/phpunit --group cluster
|