forked from coreshop/CoreShop
-
Notifications
You must be signed in to change notification settings - Fork 0
130 lines (109 loc) · 4.25 KB
/
behat_ui.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
name: Behat UI
on:
push:
branches: [ '2.2', '3.0', '3.1', '3.2', 'master' ]
pull_request:
branches: [ '2.2', '3.0', '3.1', '3.2', 'master' ]
release:
types: [ created ]
schedule:
- cron: "0 1 * * 1"
jobs:
behat_ui:
runs-on: ubuntu-latest
env:
APP_ENV: "test"
CORESHOP_SKIP_DB_SETUP: "1"
PIMCORE_TEST_DB_DSN: "mysql://root:[email protected]:3306/coreshop_test"
PIMCORE_INSTALL_ADMIN_USERNAME: "admin"
PIMCORE_INSTALL_ADMIN_PASSWORD: "admin"
PIMCORE_INSTALL_MYSQL_HOST_SOCKET: "127.0.0.1"
PIMCORE_INSTALL_MYSQL_USERNAME: "root"
PIMCORE_INSTALL_MYSQL_PASSWORD: "root"
PIMCORE_INSTALL_MYSQL_DATABASE: "coreshop_test"
PIMCORE_INSTALL_MYSQL_PORT: "3306"
PANTHER_EXTERNAL_BASE_URI: "http://localhost:9080/index_test.php"
PANTHER_CHROME_ARGUMENTS: "--disable-dev-shm-usage"
PIMCORE_KERNEL_CLASS: 'Kernel'
PIMCORE_CLASS_DIRECTORY: 'var/tmp/behat/var/classes'
PIMCORE_WRITE_TARGET_STATICROUTES: 'settings-store'
strategy:
matrix:
php: [ 8.0, 8.1 ]
pimcore: [ ~10.5, ~10.6 ]
dependencies: [ highest, lowest ]
exclude:
- php: 8.1
dependencies: lowest
services:
database:
image: "mariadb:10.5"
env:
MYSQL_ROOT_PASSWORD: root
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
name: "${{ matrix.pimcore }}, PHP ${{ matrix.php }}, Deps ${{ matrix.dependencies }}"
steps:
- uses: actions/checkout@v3
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: display_errors=On, display_startup_errors=On, error_reporting=32767
extensions: intl, gd, simpleXML, dom, exif, fileinfo, iconv, mbstring, mysqli, pdo_mysql, zip, zlib
tools: symfony
- name: Check PHP Version
run: php -v
- name: Setup DB
run: |
mysql --host 127.0.0.1 --port ${{ job.services.database.ports['3306'] }} -uroot -proot -e "CREATE DATABASE coreshop_test CHARSET=utf8mb4;"
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- if: matrix.dependencies == 'highest'
name: Install dependencies highest
run: |
composer req pimcore/pimcore:${{ matrix.pimcore }} --no-interaction --no-scripts --no-update
composer update --no-progress --prefer-dist --optimize-autoloader
- if: matrix.dependencies == 'lowest'
name: Install dependencies lowest
run: |
composer req pimcore/pimcore:${{ matrix.pimcore }} --no-interaction --no-scripts --no-update
composer update --no-progress --prefer-dist --optimize-autoloader --prefer-lowest
- name: Cache clear
run: bin/console cache:clear
- name: Assets Install
run: bin/console assets:install --symlink
- name: Install Pimcore
run: PIMCORE_KERNEL_CLASS=Kernel vendor/bin/pimcore-install --ignore-existing-config --env=test --skip-database-config
- name: Install CoreShop
run: |
bin/console coreshop:install
composer dump-autoload
- name: Install Browser Drivers
run: vendor/bin/bdi detect drivers
- name: Run Symfony Webserver
run: symfony server:start --port=9080 --dir=public --daemon --no-tls
- name: Run Behat
run: vendor/bin/behat --strict --no-interaction -vvv --config behat.yml.dist -p ui
- name: Upload Behat logs
uses: actions/upload-artifact@v2
if: failure()
with:
name: "Behat logs (non-JS, PHP ${{ matrix.php }}, Symfony ${{ matrix.pimcore }})"
path: etc/build/
if-no-files-found: ignore
- name: Upload Pimcore logs
uses: actions/upload-artifact@v2
if: failure()
with:
name: "Pimcore logs (non-JS, PHP ${{ matrix.php }}, Symfony ${{ matrix.pimcore }})"
path: var/log/
if-no-files-found: ignore