Skip to content
This repository was archived by the owner on Nov 5, 2025. It is now read-only.

Commit 892eb29

Browse files
System configuration changes for 4.3
1 parent 8b497c2 commit 892eb29

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.github/workflows/main.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,13 @@ on:
1717
jobs:
1818
run-on-linux:
1919
name: Run on Linux
20-
runs-on: ${{ matrix.operating-system }}
20+
runs-on: ubuntu-22.04
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
operating-system: [ ubuntu-18.04 ]
25-
php: [ '7.4', '8.0', '8.1' ]
24+
eccube_version: [ '4.2', '4.3' ]
25+
php: [ '7.4', '8.0', '8.1', '8.2', '8.3']
2626
db: [ 'mysql', 'mysql8', 'pgsql' ]
27-
eccube_version: [ '4.2' ]
2827
plugin_code: [ 'SiteKit42' ]
2928
include:
3029
- db: mysql
@@ -39,6 +38,15 @@ jobs:
3938
database_url: postgres://postgres:password@127.0.0.1:5432/eccube_db
4039
database_server_version: 14
4140
database_charset: utf8
41+
exclude:
42+
- eccube_version: 4.2
43+
php: 8.2
44+
- eccube_version: 4.2
45+
php: 8.3
46+
- eccube_version: 4.3
47+
php: 7.4
48+
- eccube_version: 4.3
49+
php: 8.0
4250
services:
4351
mysql:
4452
image: mysql:5.7
@@ -72,7 +80,6 @@ jobs:
7280
- 1080:1080
7381
- 1025:1025
7482
steps:
75-
- run: sudo apt-get purge -y hhvm
7683
- name: Checkout
7784
uses: actions/checkout@v2
7885

@@ -144,7 +151,7 @@ jobs:
144151
working-directory: 'ec-cube'
145152
run: |
146153
bin/console cache:clear --no-warmup
147-
bin/phpunit -c app/Plugin/${PLUGIN_CODE}/phpunit.xml.dist app/Plugin/${PLUGIN_CODE}/Tests
154+
./vendor/bin/phpunit -c app/Plugin/${PLUGIN_CODE}/phpunit.xml.dist app/Plugin/${PLUGIN_CODE}/Tests
148155
149156
- name: Disable Plugin
150157
working-directory: 'ec-cube'

0 commit comments

Comments
 (0)