Merge pull request #27 from dachcom-digital/scrummer-fix-exception-ty… #59
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 | |
on: | |
push: | |
branches: [ '2.x' ] | |
pull_request: | |
branches: [ '2.x' ] | |
jobs: | |
codeception: | |
runs-on: ubuntu-latest | |
env: | |
TEST_BUNDLE_NAME: "DsLuceneBundle" | |
TEST_BUNDLE_INSTALLER_CLASS: false | |
TEST_BUNDLE_TEST_DIR: "${{ github.workspace }}/lib/test-bundle/tests" | |
TEST_PROJECT_ROOT_DIR: "${{ github.workspace }}" | |
PIMCORE_CODECEPTION_FRAMEWORK: "${{ github.workspace }}/pimcore-codeception-framework" | |
PIMCORE_CODECEPTION_VERSION: "2.0" | |
APP_ENV: test | |
PIMCORE_TEST_DB_DSN: "mysql://root:root@127.0.0.1:3306/dachcom_bundle_test" | |
PIMCORE_TEST_URL: "http://localhost" | |
PIMCORE_CLASS_DIRECTORY: "${{ github.workspace }}/lib/test-bundle/tests/_output/var/classes/DataObject" | |
SYMFONY_DEPRECATIONS_HELPER: "weak" | |
PIMCORE_PHP_ERROR_REPORTING: 32767 | |
WEBDRIVER_HOST: localhost | |
WEBDRIVER_URL: "http://localhost:8080/" | |
services: | |
mysql: | |
image: mysql:8.0 | |
env: | |
MYSQL_ROOT_PASSWORD: root | |
ports: | |
- 3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
strategy: | |
matrix: | |
php: [ 8.1 ] | |
symfony: [ ^5.4 ] | |
pimcore: [ ~10.6.0 ] | |
include: | |
- pimcore: ~10.6.0 | |
template_tag: v10.2.5 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
path: lib/test-bundle | |
- name: Generate Application Structure | |
run: | | |
git clone -b ${{ matrix.template_tag }} --single-branch --depth 1 https://github.com/pimcore/skeleton.git | |
mv skeleton/composer.json . | |
mv skeleton/bin . | |
mv skeleton/config . | |
mv skeleton/public . | |
mv skeleton/src . | |
mv skeleton/templates . | |
mv skeleton/var . | |
rm -r skeleton | |
- name: Setup Pimcore Codeception Framework | |
env: | |
MATRIX_PIMCORE_VERSION: ${{ matrix.pimcore }} | |
MATRIX_PIMCORE_TEMPLATE_TAG: ${{ matrix.template_tag }} | |
run: | | |
git clone -b ${{ env.PIMCORE_CODECEPTION_VERSION }} --single-branch --depth 1 https://github.com/dachcom-digital/pimcore-codeception-framework.git | |
ls -al pimcore-codeception-framework | |
chmod +x ./pimcore-codeception-framework/src/_etc/scripts/setup.sh | |
./pimcore-codeception-framework/src/_etc/scripts/setup.sh | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: intl | |
coverage: none | |
- name: Check PHP Version | |
run: php -v | |
- name: Setup MySql | |
run: | | |
sudo systemctl start mysql | |
mysql -uroot -proot -h127.0.0.1 -e "CREATE DATABASE dachcom_bundle_test CHARSET=utf8mb4;" | |
- name: Setup Chromium | |
run: | | |
nohup $CHROMEWEBDRIVER/chromedriver --url-base=/wd/hub /dev/null 2>&1 & | |
- name: Start Webserver and Chrome | |
run: | | |
curl -sS https://get.symfony.com/cli/installer | bash -s -- --install-dir=$HOME/.symfony/bin | |
~/.symfony/bin/symfony server:start --port=8080 --dir=public --allow-http --no-tls --daemon | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: | | |
echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Cache Composer Downloads | |
uses: actions/cache@v1 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Composer install | |
env: | |
TEST_PIMCORE_VERSION: ${{ matrix.pimcore }} | |
TEST_SYMFONY_VERSION: ${{ matrix.symfony }} | |
run: | | |
composer config "minimum-stability" "dev" | |
composer config "prefer-stable" true | |
sed -i 's,\("dachcom-digital\/dynamic-search"\): "\(.*\)",\1: "2.x-dev",g' ${{ github.workspace }}/lib/test-bundle/composer.json | |
chmod +x ./pimcore-codeception-framework/src/_etc/scripts/composer.sh | |
./pimcore-codeception-framework/src/_etc/scripts/composer.sh | |
- name: Assets Install | |
run: | | |
bin/console assets:install public --relative --symlink | |
- name: Tests | |
run: | | |
bin/console cache:warmup --env=test | |
vendor/bin/codecept run --env github -c ${{ github.workspace }}/lib/test-bundle | |
- name: Log Output | |
uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: "Logs (PHP ${{ matrix.php }}, Pimcore ${{ matrix.pimcore }}, Symfony ${{ matrix.symfony }})" | |
path: ${{ github.workspace }}/lib/test-bundle/tests/_output/ | |
if-no-files-found: ignore |