mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 21:58:40 +03:00
264 lines
8.4 KiB
YAML
264 lines
8.4 KiB
YAML
name: Continuous integration
|
|
|
|
on:
|
|
pull_request: null
|
|
push:
|
|
branches:
|
|
- main
|
|
- develop
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php-version: ['7.4']
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Use PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-version }}
|
|
tools: composer
|
|
extensions: swoole-4.5.9
|
|
coverage: none
|
|
- run: composer install --no-interaction --prefer-dist
|
|
- run: composer cs
|
|
|
|
static-analysis:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php-version: ['7.4']
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Use PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-version }}
|
|
tools: composer
|
|
extensions: swoole-4.5.9
|
|
coverage: none
|
|
- run: composer install --no-interaction --prefer-dist
|
|
- run: composer stan
|
|
|
|
unit-tests:
|
|
runs-on: ubuntu-latest
|
|
continue-on-error: ${{ matrix.php-version == '8.0' }}
|
|
strategy:
|
|
matrix:
|
|
php-version: ['7.4', '8.0']
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Use PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-version }}
|
|
tools: composer
|
|
extensions: swoole-4.5.9
|
|
coverage: pcov
|
|
ini-values: pcov.directory=module
|
|
- if: ${{ matrix.php-version == '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist --ignore-platform-req=php
|
|
- if: ${{ matrix.php-version != '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist
|
|
- run: composer test:unit:ci
|
|
- uses: actions/upload-artifact@v2
|
|
if: ${{ matrix.php-version == '7.4' }}
|
|
with:
|
|
name: coverage-unit
|
|
path: |
|
|
build/coverage-unit
|
|
build/coverage-unit.cov
|
|
|
|
db-tests-sqlite:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php-version: ['7.4', '8.0']
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Use PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-version }}
|
|
tools: composer
|
|
extensions: swoole-4.5.9
|
|
coverage: pcov
|
|
ini-values: pcov.directory=module
|
|
- if: ${{ matrix.php-version == '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist --ignore-platform-req=php
|
|
- if: ${{ matrix.php-version != '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist
|
|
- run: composer test:db:sqlite:ci
|
|
- uses: actions/upload-artifact@v2
|
|
if: ${{ matrix.php-version == '7.4' }}
|
|
with:
|
|
name: coverage-db
|
|
path: |
|
|
build/coverage-db
|
|
build/coverage-db.cov
|
|
|
|
db-tests-mysql:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php-version: ['7.4', '8.0']
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Start database server
|
|
run: docker-compose -f docker-compose.yml -f docker-compose.ci.yml up -d shlink_db
|
|
- name: Use PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-version }}
|
|
tools: composer
|
|
extensions: swoole-4.5.9
|
|
coverage: none
|
|
- if: ${{ matrix.php-version == '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist --ignore-platform-req=php
|
|
- if: ${{ matrix.php-version != '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist
|
|
- run: composer test:db:mysql
|
|
|
|
db-tests-maria:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php-version: ['7.4', '8.0']
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Start database server
|
|
run: docker-compose -f docker-compose.yml -f docker-compose.ci.yml up -d shlink_db_maria
|
|
- name: Use PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-version }}
|
|
tools: composer
|
|
extensions: swoole-4.5.9
|
|
coverage: none
|
|
- if: ${{ matrix.php-version == '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist --ignore-platform-req=php
|
|
- if: ${{ matrix.php-version != '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist
|
|
- run: composer test:db:maria
|
|
|
|
db-tests-postgres:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php-version: ['7.4', '8.0']
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Start database server
|
|
run: docker-compose -f docker-compose.yml -f docker-compose.ci.yml up -d shlink_db_postgres
|
|
- name: Use PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-version }}
|
|
tools: composer
|
|
extensions: swoole-4.5.9
|
|
coverage: none
|
|
- if: ${{ matrix.php-version == '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist --ignore-platform-req=php
|
|
- if: ${{ matrix.php-version != '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist
|
|
- run: composer test:db:postgres
|
|
|
|
db-tests-ms:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php-version: ['7.4', '8.0']
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Install MSSQL ODBC
|
|
run: sudo ./data/infra/ci/install-ms-odbc.sh
|
|
- name: Start database server
|
|
run: docker-compose -f docker-compose.yml -f docker-compose.ci.yml up -d shlink_db_ms
|
|
- name: Use PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-version }}
|
|
tools: composer
|
|
extensions: swoole-4.5.9, pdo_sqlsrv-5.9.0beta2
|
|
coverage: none
|
|
- if: ${{ matrix.php-version == '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist --ignore-platform-req=php
|
|
- if: ${{ matrix.php-version != '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist
|
|
- name: Create test database
|
|
run: docker-compose exec -T shlink_db_ms /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P 'Passw0rd!' -Q "CREATE DATABASE shlink_test;"
|
|
- run: composer test:db:ms
|
|
|
|
api-tests:
|
|
runs-on: ubuntu-latest
|
|
continue-on-error: ${{ matrix.php-version == '8.0' }}
|
|
strategy:
|
|
matrix:
|
|
php-version: ['7.4', '8.0']
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Start database server
|
|
run: docker-compose -f docker-compose.yml -f docker-compose.ci.yml up -d shlink_db
|
|
- name: Use PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-version }}
|
|
tools: composer
|
|
extensions: swoole-4.5.9
|
|
coverage: pcov
|
|
ini-values: pcov.directory=module
|
|
- if: ${{ matrix.php-version == '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist --ignore-platform-req=php
|
|
- if: ${{ matrix.php-version != '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist
|
|
- run: bin/test/run-api-tests.sh
|
|
- uses: actions/upload-artifact@v2
|
|
if: ${{ matrix.php-version == '7.4' }}
|
|
with:
|
|
name: coverage-api
|
|
path: |
|
|
build/coverage-api
|
|
build/coverage-api.cov
|
|
|
|
mutation-tests:
|
|
needs:
|
|
- unit-tests
|
|
- db-tests-sqlite
|
|
- api-tests
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php-version: ['7.4']
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Start database server
|
|
run: docker-compose -f docker-compose.yml -f docker-compose.ci.yml up -d shlink_db
|
|
- name: Use PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-version }}
|
|
tools: composer
|
|
extensions: swoole-4.5.9
|
|
coverage: pcov
|
|
ini-values: pcov.directory=module
|
|
- if: ${{ matrix.php-version == '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist --ignore-platform-req=php
|
|
- if: ${{ matrix.php-version != '8.0' }}
|
|
run: composer install --no-interaction --prefer-dist
|
|
- uses: actions/download-artifact@v2
|
|
with:
|
|
path: build
|
|
- run: ls -l build
|
|
- run: composer infect:ci
|