Skip to content

Commit

Permalink
[FEATURE] Run the functional tests on TYPO3 12 as well (#615)
Browse files Browse the repository at this point in the history
Fixes #519
Closes #528

Co-authored-by: lina.wolf <[email protected]>
  • Loading branch information
oliverklee and linawolf authored Oct 19, 2022
1 parent 88785e3 commit 1d9c79a
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,3 +244,9 @@ jobs:
- typo3-version: "^11.5"
php-version: "8.1"
composer-dependencies: highest
- typo3-version: "^12.0"
php-version: "8.1"
composer-dependencies: lowest
- typo3-version: "^12.0"
php-version: "8.1"
composer-dependencies: highest
6 changes: 6 additions & 0 deletions .github/workflows/predefined.yml
Original file line number Diff line number Diff line change
Expand Up @@ -291,3 +291,9 @@ jobs:
- typo3-version: "^11.5"
php-version: "8.1"
composer-dependencies: highest
- typo3-version: "^12.0"
php-version: "8.1"
composer-dependencies: lowest
- typo3-version: "^12.0"
php-version: "8.1"
composer-dependencies: highest
2 changes: 2 additions & 0 deletions .gitlab/pipeline/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ include:
- '/.gitlab/pipeline/jobs/func-php8.0-v11-lowest.yml'
- '/.gitlab/pipeline/jobs/func-php8.1-v11-highest.yml'
- '/.gitlab/pipeline/jobs/func-php8.1-v11-lowest.yml'
- '/.gitlab/pipeline/jobs/func-php8.1-v12-highest.yml'
- '/.gitlab/pipeline/jobs/func-php8.1-v12-lowest.yml'
- '/.gitlab/pipeline/jobs/javascript-lint.yml'
- '/.gitlab/pipeline/jobs/json-lint.yml'
- '/.gitlab/pipeline/jobs/php-copypaste-check.yml'
Expand Down
13 changes: 13 additions & 0 deletions .gitlab/pipeline/jobs/func-php8.1-v12-highest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
func-php8.1-v11-highest:
extends: .default
image: php:8.1
services:
- mariadb:10
stage: test
needs:
- build-composer-dependencies
- php-lint-php8.1
script:
- composer require --no-ansi --no-interaction --no-progress --no-install typo3/cms-core:"^12.0"
- composer update --no-ansi --no-interaction --no-progress --with-dependencies
- wait-for-it mariadb:3306 -t 60 --strict -- composer ci:tests:functional
13 changes: 13 additions & 0 deletions .gitlab/pipeline/jobs/func-php8.1-v12-lowest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
func-php8.1-v11-lowest:
extends: .default
image: php:8.1
services:
- mariadb:10
stage: test
needs:
- build-composer-dependencies
- php-lint-php8.1
script:
- composer require --no-ansi --no-interaction --no-progress --no-install typo3/cms-core:"^12.0"
- composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
- wait-for-it mariadb:3306 -t 60 --strict -- composer ci:tests:functional
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).

### Added
- Harden the GitHub Actions workflows (#649)
- Add support for TYPO3 12 (#652, #653)
- Add support for TYPO3 12 (#615, #652, #653)
- Add `.gitignore` entry for JetBrains Fleet editor (#642)

### Changed
Expand Down

0 comments on commit 1d9c79a

Please sign in to comment.