-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Prometee/ekyna-dependency
`ekyna/payum-payzen-bundle` dependency and add test Application
Showing
127 changed files
with
2,186 additions
and
1,233 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,289 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- 'dependabot/**' | ||
paths-ignore: | ||
- "docs/**" | ||
- "*.md" | ||
pull_request: | ||
paths-ignore: | ||
- "docs/**" | ||
- "*.md" | ||
release: | ||
types: [created] | ||
schedule: | ||
- | ||
cron: "0 1 * * 6" # Run at 1am every Saturday | ||
workflow_dispatch: ~ | ||
|
||
jobs: | ||
static-checks: | ||
runs-on: ubuntu-latest | ||
|
||
name: "Static checks (PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }})" | ||
|
||
timeout-minutes: 10 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: ["8.0"] | ||
symfony: ["^4.4", "^5.4"] | ||
|
||
steps: | ||
- | ||
uses: actions/checkout@v2 | ||
|
||
- | ||
name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: "${{ matrix.php }}" | ||
ini-values: date.timezone=Europe/Paris, opcache.enable=1, opcache.enable_cli=0, opcache.memory_consumption=512, opcache.max_accelerated_files=65407, opcache.interned_strings_buffer=8, opcache.validate_timestamps=0, opcache.save_comments=1, opcache.fast_shutdown=0 | ||
extensions: intl, gd, opcache, mysql, pdo_mysql | ||
tools: symfony | ||
coverage: none | ||
|
||
- | ||
name: Restrict Symfony version | ||
if: matrix.symfony != '' | ||
run: | | ||
composer global require --no-progress --no-scripts --no-plugins "symfony/flex:^1.10" | ||
composer global config --no-plugins allow-plugins.symfony/flex true | ||
composer config extra.symfony.require "${{ matrix.symfony }}" | ||
- | ||
name: Get Composer cache directory | ||
id: composer-cache | ||
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | ||
|
||
- | ||
name: Cache Composer | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-php-${{ matrix.php }}-symfony-${{ matrix.symfony }}-composer-${{ hashFiles('**/composer.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-php-${{ matrix.php }}-symfony-${{ matrix.symfony }}-composer- | ||
- | ||
name: Install PHP dependencies | ||
run: composer update --no-interaction --no-scripts | ||
id: end-of-setup | ||
|
||
- | ||
name: Validate composer.json | ||
run: composer validate --strict --no-check-version | ||
if: always() && steps.end-of-setup.outcome == 'success' | ||
|
||
- | ||
name: Check for security vulnerabilities | ||
run: symfony security:check | ||
if: always() && steps.end-of-setup.outcome == 'success' | ||
|
||
- | ||
name: Validate Yaml files | ||
run: vendor/bin/yaml-lint src | ||
if: always() && steps.end-of-setup.outcome == 'success' && matrix.symfony != '^4.4' | ||
|
||
#- | ||
# name: Run ECS | ||
# run: vendor/bin/ecs check src | ||
# if: always() && steps.end-of-setup.outcome == 'success' && matrix.symfony != '^4.4' | ||
|
||
#- | ||
# name: Run Psalm | ||
# run: vendor/bin/psalm --show-info=false --output-format=github --php-version=${{ matrix.php }} | ||
# if: always() && steps.end-of-setup.outcome == 'success' | ||
|
||
#- | ||
# name: Run PHPStan | ||
# run: vendor/bin/phpstan analyse -l max src | ||
# if: always() && steps.end-of-setup.outcome == 'success' | ||
tests: | ||
runs-on: ubuntu-latest | ||
|
||
name: "Sylius ${{ matrix.sylius }}, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, MySQL ${{ matrix.mysql }}" | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: [7.3, 7.4, 8.0] | ||
symfony: [^4.4, ^5.4] | ||
sylius: [~1.8.0, ~1.9.0, ~1.10.0, ~1.11.0] | ||
node: [12.x] | ||
mysql: [5.7] | ||
|
||
exclude: | ||
- | ||
sylius: ~1.8.0 | ||
symfony: ^5.4 | ||
- | ||
sylius: ~1.8.0 | ||
php: 8.0 | ||
- | ||
sylius: ~1.9.0 | ||
php: 8.0 | ||
- | ||
sylius: ~1.10.0 | ||
php: 7.3 | ||
- | ||
sylius: ~1.11.0 | ||
php: 7.3 | ||
- | ||
sylius: ~1.11.0 | ||
php: 7.4 | ||
- | ||
sylius: ~1.11.0 | ||
symfony: ^4.4 | ||
|
||
env: | ||
APP_ENV: test | ||
DATABASE_URL: "mysql://root:[email protected]/sylius?serverVersion=${{ matrix.mysql }}" | ||
|
||
steps: | ||
- | ||
uses: actions/checkout@v2 | ||
|
||
- | ||
name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: "${{ matrix.php }}" | ||
extensions: intl | ||
tools: symfony | ||
coverage: none | ||
|
||
- | ||
name: Setup Node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "${{ matrix.node }}" | ||
|
||
- | ||
name: Shutdown default MySQL | ||
run: sudo service mysql stop | ||
|
||
- | ||
name: Setup MySQL | ||
uses: mirromutth/[email protected] | ||
with: | ||
mysql version: "${{ matrix.mysql }}" | ||
mysql root password: "root" | ||
|
||
- | ||
name: Output PHP version for Symfony CLI | ||
run: php -v | head -n 1 | awk '{ print $2 }' > .php-version | ||
|
||
- | ||
name: Install certificates | ||
run: symfony server:ca:install | ||
|
||
- | ||
name: Run Chrome Headless | ||
run: google-chrome-stable --enable-automation --disable-background-networking --no-default-browser-check --no-first-run --disable-popup-blocking --disable-default-apps --allow-insecure-localhost --disable-translate --disable-extensions --no-sandbox --enable-features=Metal --headless --remote-debugging-port=9222 --window-size=2880,1800 --proxy-server='direct://' --proxy-bypass-list='*' https://127.0.0.1 > /dev/null 2>&1 & | ||
|
||
- | ||
name: Run webserver | ||
run: (cd tests/Application && symfony server:start --port=8080 --dir=public --daemon) | ||
|
||
- | ||
name: Get Composer cache directory | ||
id: composer-cache | ||
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | ||
|
||
- | ||
name: Cache Composer | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json **/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-php-${{ matrix.php }}-composer- | ||
- | ||
name: Restrict Symfony version | ||
if: matrix.symfony != '' | ||
run: | | ||
composer global require --no-progress --no-scripts --no-plugins "symfony/flex:^1.10" | ||
composer global config --no-plugins allow-plugins.symfony/flex true | ||
composer config extra.symfony.require "${{ matrix.symfony }}" | ||
- | ||
name: Restrict Sylius version | ||
if: matrix.sylius != '' | ||
run: composer require "sylius/sylius:${{ matrix.sylius }}" --no-update --no-scripts --no-interaction | ||
|
||
- | ||
name: Fix build on Sylius 1.8 | ||
if: matrix.sylius == '~1.8.0' | ||
run: | | ||
composer require "friendsofsymfony/oauth-server-bundle:^1.6 || >2.0.0-alpha.0 ^2.0@dev" --no-update --no-scripts --no-interaction | ||
# Sylius issues on `json_array` type not existing | ||
composer require "doctrine/dbal:^2.6" --no-update --no-scripts --no-interaction | ||
# Not added into Sylius 1.8 but available in 1.9 | ||
composer require "liip/imagine-bundle:<2.6" --no-update --no-scripts --no-interaction | ||
- | ||
name: Fix build on Sylius 1.9 | ||
if: matrix.sylius == '~1.9.0' | ||
run: | | ||
composer require "friendsofsymfony/oauth-server-bundle:>2.0.0-alpha.0 ^2.0@dev" --no-update --no-scripts --no-interaction | ||
# Sylius issues on `json_array` type not existing | ||
composer require "doctrine/dbal:^2.6" --no-update --no-scripts --no-interaction | ||
- | ||
name: Install PHP dependencies | ||
run: composer install --no-interaction | ||
|
||
- | ||
name: Get Yarn cache directory | ||
id: yarn-cache | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
|
||
- | ||
name: Cache Yarn | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.yarn-cache.outputs.dir }} | ||
key: ${{ runner.os }}-node-${{ matrix.node }}-yarn-${{ hashFiles('**/package.json **/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-node-${{ matrix.node }}-yarn- | ||
- | ||
name: Install JS dependencies | ||
run: (cd tests/Application && yarn install) | ||
|
||
- | ||
name: Prepare test application database | ||
run: | | ||
(cd tests/Application && bin/console doctrine:database:create -vvv) | ||
(cd tests/Application && bin/console doctrine:migrations:migrate -n -vvv -q) | ||
- | ||
name: Prepare test application assets | ||
run: | | ||
(cd tests/Application && bin/console assets:install public -vvv) | ||
(cd tests/Application && yarn build) | ||
- | ||
name: Prepare test application cache | ||
run: (cd tests/Application && bin/console cache:warmup -vvv) | ||
|
||
- | ||
name: Load fixtures in test application | ||
run: (cd tests/Application && bin/console sylius:fixtures:load -n) | ||
|
||
#- | ||
# name: Run PHPUnit | ||
# run: vendor/bin/phpunit --colors=always | ||
|
||
#- | ||
# name: Run Behat | ||
# run: vendor/bin/behat --colors --strict -vvv --no-interaction || vendor/bin/behat --colors --strict -vvv --no-interaction --rerun | ||
|
||
#- | ||
# name: Upload Behat logs | ||
# uses: actions/upload-artifact@v2 | ||
# if: failure() | ||
# with: | ||
# name: Behat logs | ||
# path: etc/build/ | ||
# if-no-files-found: ignore |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/vendor/ | ||
/node_modules/ | ||
/composer.lock | ||
|
||
/etc/build/* | ||
!/etc/build/.gitignore | ||
|
||
/tests/Application/yarn.lock |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
const NODE_MODULES_FOLDER_NAME = 'node_modules'; | ||
const PATH_TO_NODE_MODULES = 'tests' . \DIRECTORY_SEPARATOR . 'Application' . \DIRECTORY_SEPARATOR . 'node_modules'; | ||
|
||
/* cannot use `file_exists` or `stat` as gives false on symlinks if target path does not exist yet */ | ||
if (@lstat(NODE_MODULES_FOLDER_NAME)) { | ||
if (is_link(NODE_MODULES_FOLDER_NAME) || is_dir(NODE_MODULES_FOLDER_NAME)) { | ||
echo '> `' . NODE_MODULES_FOLDER_NAME . '` already exists as a link or folder, keeping existing as may be intentional.' . \PHP_EOL; | ||
exit(0); | ||
} | ||
echo '> Invalid symlink `' . NODE_MODULES_FOLDER_NAME . '` detected, recreating...' . \PHP_EOL; | ||
if (!@unlink(NODE_MODULES_FOLDER_NAME)) { | ||
echo '> Could not delete file `' . NODE_MODULES_FOLDER_NAME . '`.' . \PHP_EOL; | ||
exit(1); | ||
} | ||
} | ||
|
||
/* try to create the symlink using PHP internals... */ | ||
$success = @symlink(PATH_TO_NODE_MODULES, NODE_MODULES_FOLDER_NAME); | ||
|
||
/* if case it has failed, but OS is Windows... */ | ||
if (!$success && strtoupper(substr(\PHP_OS, 0, 3)) === 'WIN') { | ||
/* ...then try a different approach which does not require elevated permissions and folder to exist */ | ||
echo '> This system is running Windows, creation of links requires elevated privileges,' . \PHP_EOL; | ||
echo '> and target path to exist. Fallback to NTFS Junction:' . \PHP_EOL; | ||
exec(sprintf('mklink /J %s %s 2> NUL', NODE_MODULES_FOLDER_NAME, PATH_TO_NODE_MODULES), $output, $returnCode); | ||
$success = $returnCode === 0; | ||
if (!$success) { | ||
echo '> Failed o create the required symlink' . \PHP_EOL; | ||
exit(2); | ||
} | ||
} | ||
|
||
$path = @readlink(NODE_MODULES_FOLDER_NAME); | ||
/* check if link points to the intended directory */ | ||
if ($path && realpath($path) === realpath(PATH_TO_NODE_MODULES)) { | ||
echo '> Successfully created the symlink.' . \PHP_EOL; | ||
exit(0); | ||
} | ||
|
||
echo '> Failed to create the symlink to `' . NODE_MODULES_FOLDER_NAME . '`.' . \PHP_EOL; | ||
exit(3); |
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
Oops, something went wrong.