Skip to content

Commit

Permalink
[TASK] Updated configurations for version upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
hojalatheef committed Feb 17, 2025
1 parent ed77196 commit 2fd7a39
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 10 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Tests

on:
push:
pull_request:

jobs:
testing:
name: Testing

runs-on: ubuntu-latest

strategy:
# This prevents cancellation of matrix job runs, if one or more already failed
# and let the remaining matrix jobs be executed anyway.
fail-fast: false

matrix:
php:
- '8.2'
- '8.3'
- '8.4'

steps:
- name: 'Checkout'
uses: actions/checkout@v4

- name: 'Lint PHP'
run: Build/Scripts/runTests.sh -b podman -p ${{ matrix.php }} -s lint

- name: 'Install testing system'
run: Build/Scripts/runTests.sh -b podman -p ${{ matrix.php }} -s composerUpdate

- name: 'Composer validate'
run: Build/Scripts/runTests.sh -b podman -p ${{ matrix.php }} -s composerValidate

- name: 'Composer normalize'
run: Build/Scripts/runTests.sh -b podman -p ${{ matrix.php }} -s composerNormalize -n

- name: 'CGL'
if: ${{ matrix.php <= '8.3' }}
run: Build/Scripts/runTests.sh -b podman -n -p ${{ matrix.php }} -s cgl

- name: 'Execute unit tests'
run: Build/Scripts/runTests.sh -b podman -p ${{ matrix.php }} -s unit

- name: 'Execute functional tests'
run: Build/Scripts/runTests.sh -b podman -p ${{ matrix.php }} -d mysql -s functional

- name: 'Execute functional tests'
run: Build/Scripts/runTests.sh -b podman -p ${{ matrix.php }} -d mariadb -s functional

- name: 'Execute functional tests'
run: Build/Scripts/runTests.sh -b podman -p ${{ matrix.php }} -d postgres -s functional
15 changes: 8 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,17 @@
"source": "https://github.com/jweiland-net/clubdirectory"
},
"require": {
"jweiland/glossary2": ">=6.0.0",
"jweiland/maps2": ">=11.0.0",
"typo3/cms-core": "^12.4.8",
"typo3/cms-redirects": "^12.4"
"jweiland/glossary2": ">=7.0.0",
"typo3/cms-core": "^13.4",
"typo3/cms-redirects": "^13.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44",
"friendsofphp/php-cs-fixer": "^3.14",
"phpunit/phpunit": "^9.6",
"typo3/coding-standards": "^0.6",
"typo3/testing-framework": "^7.0.2"
"phpstan/phpstan": "^1.10",
"roave/security-advisories": "dev-latest",
"typo3/coding-standards": "^0.8",
"typo3/testing-framework": "^9.0.1"
},
"replace": {
"typo3-ter/clubdirectory": "self.version"
Expand Down
6 changes: 3 additions & 3 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
'author_email' => 'projects@jweiland.net',
'author_company' => 'jweiland.net',
'state' => 'stable',
'version' => '7.0.1',
'version' => '8.0.0',
'constraints' => [
'depends' => [
'typo3' => '12.4.0-12.4.99',
'typo3' => '13.4.0-13.4.99',
'maps2' => '11.0.0-0.0.0',
'glossary2' => '6.0.0-0.0.0',
'glossary2' => '7.0.0-0.0.0',
],
'conflicts' => [],
'suggests' => [
Expand Down

0 comments on commit 2fd7a39

Please sign in to comment.