-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update github-actions to 4.21.0 (#188)
* Add 7.3 default workflow
- Loading branch information
1 parent
5ecf96c
commit 6a55aa2
Showing
2 changed files
with
188 additions
and
0 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,94 @@ | ||
workflow: | ||
matrix: &matrix | ||
# We only test the latest recommended versions here but both template engines | ||
php: &matrix_php '["8.2","8.3"]' | ||
mysql: &matrix_mysql '["mysql-5.7","mysql-8.0.36","mariadb-11"]' | ||
matrix_slim: &matrix_slim | ||
php: '["8.2"]' | ||
mysql: '["8.0.36"]' | ||
global: | ||
git: &git | ||
default_ref: &default_ref 'b-7.3.x' | ||
enterprise_ref: 'b-7.3.x' | ||
|
||
composer: &composer | ||
dev_ref: &dev_ref dev-b-7.3.x | ||
|
||
install_shop_with_modules: &install | ||
matrix: *matrix | ||
git: *git | ||
composer: | ||
dev_ref: *dev_ref | ||
transform: | | ||
{ | ||
"preferred-install": { | ||
"oxid-esales/*": "source", | ||
"oxid-professional-services/*": "source", | ||
"ddoe/*": "source" | ||
}, | ||
"require": { | ||
"oxid-esales/twig-component": "dev-b-7.3.x", | ||
"oxid-esales/twig-admin-theme": "dev-b-7.3.x", | ||
"oxid-esales/apex-theme": "dev-b-7.3.x" | ||
} | ||
} | ||
# BEGIN Deprecated, will be superseded by install: | ||
prepare_shop: *install | ||
|
||
install_shop: | ||
matrix: *matrix | ||
git: *git | ||
|
||
install_module: | ||
matrix: *matrix | ||
git: | ||
module: | ||
ref: *default_ref | ||
composer: *composer | ||
# END Deprecated | ||
|
||
runscript: | ||
matrix: *matrix | ||
|
||
runslim: | ||
matrix: *matrix_slim | ||
|
||
phpunit: | ||
matrix: *matrix | ||
|
||
codeception: | ||
matrix: *matrix | ||
composer: *composer | ||
|
||
runtest: | ||
matrix: *matrix | ||
composer: | ||
transform: | | ||
{ | ||
"require-dev": { | ||
"oxid-esales/tests-deprecated-ce": "dev-b-7.3.x", | ||
"codeception/module-webdriver": "^3.1", | ||
"phpunit/phpunit": "^9.1.1" | ||
} | ||
} | ||
sonarcloud: | ||
matrix: *matrix_slim | ||
|
||
phpcs_tests: | ||
matrix: *matrix_slim | ||
|
||
phpmd: | ||
matrix: *matrix_slim | ||
|
||
phpstan: | ||
matrix: *matrix_slim | ||
|
||
styles: | ||
matrix: *matrix_slim | ||
composer: *composer | ||
|
||
finish: | ||
matrix: *matrix |
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,94 @@ | ||
workflow: | ||
matrix: &matrix | ||
# We only test the latest recommended versions here but both template engines | ||
php: &matrix_php '["8.2","8.3"]' | ||
mysql: &matrix_mysql '["mysql-5.7","mysql-8.0.36","mariadb-11"]' | ||
matrix_slim: &matrix_slim | ||
php: '["8.2"]' | ||
mysql: '["8.0.36"]' | ||
global: | ||
git: &git | ||
default_ref: &default_ref 'b-7.3.x' | ||
enterprise_ref: 'b-7.3.x' | ||
|
||
composer: &composer | ||
dev_ref: &dev_ref dev-b-7.3.x | ||
|
||
install_shop_with_modules: &install | ||
matrix: *matrix | ||
git: *git | ||
composer: | ||
dev_ref: *dev_ref | ||
transform: | | ||
{ | ||
"preferred-install": { | ||
"oxid-esales/*": "source", | ||
"oxid-professional-services/*": "source", | ||
"ddoe/*": "source" | ||
}, | ||
"require": { | ||
"oxid-esales/twig-component": "dev-b-7.3.x", | ||
"oxid-esales/twig-admin-theme": "dev-b-7.3.x", | ||
"oxid-esales/apex-theme": "dev-b-7.3.x" | ||
} | ||
} | ||
# BEGIN Deprecated, will be superseded by install: | ||
prepare_shop: *install | ||
|
||
install_shop: | ||
matrix: *matrix | ||
git: *git | ||
|
||
install_module: | ||
matrix: *matrix | ||
git: | ||
module: | ||
ref: *default_ref | ||
composer: *composer | ||
# END Deprecated | ||
|
||
runscript: | ||
matrix: *matrix | ||
|
||
runslim: | ||
matrix: *matrix_slim | ||
|
||
phpunit: | ||
matrix: *matrix | ||
|
||
codeception: | ||
matrix: *matrix | ||
composer: *composer | ||
|
||
runtest: | ||
matrix: *matrix | ||
composer: | ||
transform: | | ||
{ | ||
"require-dev": { | ||
"oxid-esales/tests-deprecated-ce": "dev-b-7.3.x", | ||
"codeception/module-webdriver": "^3.1", | ||
"phpunit/phpunit": "^9.1.1" | ||
} | ||
} | ||
sonarcloud: | ||
matrix: *matrix_slim | ||
|
||
phpcs_tests: | ||
matrix: *matrix_slim | ||
|
||
phpmd: | ||
matrix: *matrix_slim | ||
|
||
phpstan: | ||
matrix: *matrix_slim | ||
|
||
styles: | ||
matrix: *matrix_slim | ||
composer: *composer | ||
|
||
finish: | ||
matrix: *matrix |