Codeception Tests #7
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: "Codeception Tests" | |
on: | |
schedule: | |
- cron: '0 3 * * *' | |
pull_request: | |
branches: | |
- "[0-9]+.[0-9]+" | |
- "[0-9]+.x" | |
paths-ignore: | |
- 'doc/**' | |
- 'bundles/**/public/**' | |
push: | |
branches: | |
- "[0-9]+.[0-9]+" | |
- "[0-9]+.x" | |
- "*_actions" | |
paths-ignore: | |
- 'doc/**' | |
- 'bundles/**/public/**' | |
env: | |
PIMCORE_PROJECT_ROOT: ${{ github.workspace }} | |
APP_ENV: test | |
PIMCORE_TEST: 1 | |
PIMCORE_TEST_DB_DSN: "mysql://[email protected]:33006/pimcore_test" | |
PIMCORE_TEST_REDIS_DSN: "redis://127.0.0.1:63379" | |
MINIO_ACCESS_KEY: "PIMCORE_OBJECT_STORAGE_ACCESS_KEY" | |
MINIO_SECRET_KEY: "PIMCORE_OBJECT_STORAGE_SECRET_KEY" | |
permissions: | |
contents: read | |
jobs: | |
codeception-tests: | |
name: "Codeception tests" | |
runs-on: "ubuntu-20.04" | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
include: | |
- { php-version: 8.1, database: "mariadb:10.3", dependencies: lowest, experimental: false, storage: local, symfony: "", composer-options: "" } | |
- { php-version: 8.2, database: "mariadb:10.5", dependencies: highest, experimental: false, storage: local, symfony: "", composer-options: "" } | |
- { php-version: 8.1, database: "mariadb:10.7", dependencies: highest, experimental: false, storage: local, symfony: "", composer-options: "" } | |
- { php-version: 8.2, database: "mariadb:10.11", dependencies: highest, experimental: false, storage: local, symfony: "", composer-options: "" } | |
- { php-version: 8.2, database: "mariadb:10.11", dependencies: highest, experimental: true, storage: local, symfony: "6.4.x-dev", composer-options: "" } | |
- { php-version: 8.1, database: "mysql:8.0", dependencies: lowest, experimental: false, storage: local, symfony: "", composer-options: "" } | |
- { php-version: 8.1, database: "percona:8.0", dependencies: lowest, experimental: false, storage: minio, symfony: "", composer-options: "" } | |
services: | |
minio: | |
image: bitnami/minio:latest | |
ports: | |
- 9000:9000 | |
env: | |
MINIO_ROOT_USER: "${{ env.MINIO_ACCESS_KEY }}" | |
MINIO_ROOT_PASSWORD: "${{ env.MINIO_SECRET_KEY }}" | |
MINIO_SERVER_ACCESS_KEY: "${{ env.MINIO_ACCESS_KEY }}" | |
MINIO_SERVER_SECRET_KEY: "${{ env.MINIO_SECRET_KEY }}" | |
MINIO_DEFAULT_BUCKETS: "asset,assetcache,thumbnail,version,recyclebin,admin,emaillog,temp,applicationlog" | |
options: --name minio-server | |
redis: | |
image: redis | |
ports: | |
- 63379:6379 | |
mariadb: | |
image: "${{ matrix.database }}" | |
ports: | |
- 33006:3306 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: yes | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v2" | |
- uses: "actions/setup-node@v3" | |
with: | |
node-version: 'lts/*' | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
extensions: imagick | |
ini-values: display_errors=On, display_startup_errors=On, error_reporting=32767 | |
php-version: "${{ matrix.php-version }}" | |
- name: Verify MariaDB connection | |
run: | | |
cp .github/ci/files/.my.cnf ~/.my.cnf | |
while ! mysqladmin ping --silent; do | |
sleep 1 | |
done | |
- name: "Setup Pimcore environment" | |
env: | |
PIMCORE_STORAGE: "${{ matrix.storage }}" | |
run: | | |
mysql -e "CREATE DATABASE pimcore_test CHARSET=utf8mb4;" | |
.github/ci/scripts/setup-pimcore-environment.sh | |
- name: "Set Symfony version constraint in composer.json" | |
env: | |
SYMFONY_VERSION: "${{ matrix.symfony }}" | |
run: | | |
if [ ! -z "$SYMFONY_VERSION" ]; then | |
.github/ci/scripts/symfony-require-dev.sh | |
fi | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
composer-options: "${{ matrix.composer-options }}" | |
- name: "Test environment infos" | |
run: | | |
mysql -e "SELECT VERSION();" | |
php -i | |
./bin/console debug:config flysystem | |
- name: "Run Codeception" | |
run: "vendor/bin/codecept run -c . -vvv --xml" |