-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop TYPO3 7 support and add php ci github workflow
- Loading branch information
Showing
6 changed files
with
258 additions
and
81 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,174 @@ | ||
name: "PHP-CI" | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: "30 6 * * 1" | ||
|
||
env: | ||
PHP_EXTENSIONS: "intl, mbstring, json, zip, curl" | ||
|
||
jobs: | ||
|
||
php-lint: | ||
name: "PHP Lint" | ||
|
||
runs-on: "ubuntu-latest" | ||
|
||
strategy: | ||
matrix: | ||
php-version: | ||
- "7.0" | ||
- "7.1" | ||
- "7.2" | ||
- "7.3" | ||
- "7.4" | ||
|
||
steps: | ||
- | ||
name: "Checkout" | ||
uses: "actions/checkout@v2" | ||
- | ||
name: "Setup PHP" | ||
uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "${{ matrix.php-version }}" | ||
extensions: "${{ env.PHP_EXTENSIONS }}" | ||
- | ||
name: "Validate composer.json and composer.lock" | ||
run: "composer validate --strict" | ||
- | ||
name: "Determine composer cache directory" | ||
id: "determine-composer-cache-directory" | ||
run: "echo \"::set-output name=directory::$(composer config cache-dir)\"" | ||
- | ||
name: "Cache dependencies installed with composer" | ||
uses: "actions/cache@v2.0.0" | ||
with: | ||
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}" | ||
key: "php-${{ matrix.php-version }}-composer-${{ hashFiles('composer.lock') }}" | ||
restore-keys: "php-${{ matrix.php-version }}-composer-" | ||
- | ||
name: "Install composer dependencies" | ||
run: "composer install --no-interaction --no-progress --no-suggest" | ||
- | ||
name: "Run Linter" | ||
run: "composer lint:php" | ||
|
||
php-qs: | ||
name: "PHP QS" | ||
|
||
runs-on: "ubuntu-latest" | ||
|
||
needs: "php-lint" | ||
|
||
strategy: | ||
matrix: | ||
command: | ||
- "test:phpcs" | ||
php-version: | ||
- "7.4" | ||
|
||
steps: | ||
- | ||
name: "Checkout" | ||
uses: "actions/checkout@v2" | ||
- | ||
name: "Setup PHP" | ||
uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "${{ matrix.php-version }}" | ||
extensions: "${{ env.PHP_EXTENSIONS }}" | ||
- | ||
name: "Validate composer.json and composer.lock" | ||
run: "composer validate --strict" | ||
- | ||
name: "Determine composer cache directory" | ||
id: "determine-composer-cache-directory" | ||
run: "echo \"::set-output name=directory::$(composer config cache-dir)\"" | ||
- | ||
name: "Cache dependencies installed with composer" | ||
uses: "actions/cache@v2.0.0" | ||
with: | ||
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}" | ||
key: "php-${{ matrix.php-version }}-composer-${{ hashFiles('composer.lock') }}" | ||
restore-keys: "php-${{ matrix.php-version }}-composer-" | ||
- | ||
name: "Install composer dependencies" | ||
run: "composer install --no-interaction --no-progress --no-suggest" | ||
- | ||
name: "Run command" | ||
run: "composer ${{ matrix.command }}" | ||
|
||
|
||
php-unit: | ||
name: "PHP Unit" | ||
|
||
runs-on: "ubuntu-latest" | ||
|
||
needs: ["php-lint", "php-qs"] | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- | ||
typo3-version: "^8.7" | ||
php-version: "7.0" | ||
- | ||
typo3-version: "^8.7" | ||
php-version: "7.1" | ||
- | ||
typo3-version: "^8.7" | ||
php-version: "7.2" | ||
- | ||
typo3-version: "^8.7" | ||
php-version: "7.3" | ||
- | ||
typo3-version: "^8.7" | ||
php-version: "7.4" | ||
- | ||
typo3-version: "^9.5" | ||
php-version: "7.2" | ||
- | ||
typo3-version: "^9.5" | ||
php-version: "7.3" | ||
- | ||
typo3-version: "^9.5" | ||
php-version: "7.4" | ||
|
||
steps: | ||
- | ||
name: "Checkout" | ||
uses: "actions/checkout@v2" | ||
- | ||
name: "Setup PHP" | ||
uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "${{ matrix.php-version }}" | ||
extensions: "${{ env.PHP_EXTENSIONS }}" | ||
- | ||
name: "Validate composer.json and composer.lock" | ||
run: "composer validate --strict" | ||
- | ||
name: "Determine composer cache directory" | ||
id: "determine-composer-cache-directory" | ||
run: "echo \"::set-output name=directory::$(composer config cache-dir)\"" | ||
- | ||
name: "Cache dependencies installed with composer" | ||
uses: "actions/cache@v2.0.0" | ||
with: | ||
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}" | ||
key: "php-${{ matrix.php-version }}-composer-${{ hashFiles('composer.lock') }}" | ||
restore-keys: "php-${{ matrix.php-version }}-composer-" | ||
- | ||
name: "Install composer dependencies" | ||
run: | | ||
composer remove --no-update typo3/cms typo3/cms-core | ||
composer require typo3/minimal:"${{ matrix.typo3-version }}" | ||
- | ||
name: "Run PHP unit tests" | ||
run: "composer test:phpunit" | ||
|
||
|
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,41 @@ | ||
name: TER release | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+' | ||
|
||
jobs: | ||
release: | ||
name: TYPO3 TER release | ||
|
||
if: startsWith(github.ref, 'refs/tags/') | ||
|
||
runs-on: ubuntu-20.04 | ||
|
||
env: | ||
TYPO3_API_TOKEN: ${{ secrets.TYPO3_API_TOKEN }} | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Get version | ||
id: get-version | ||
run: echo ::set-output name=version::$(echo "${{ github.event.ref }}" | cut -d 'v' -f 2) | ||
|
||
- name: Get comment | ||
id: get-comment | ||
run: echo ::set-output name=comment::Released version ${{ steps.get-version.outputs.version }}. Check changelog in documentation on github for more information. | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 7.4 | ||
extensions: intl, mbstring, json, zip, curl | ||
|
||
- name: Install tailor | ||
run: composer global require typo3/tailor --prefer-dist --no-progress | ||
|
||
- name: Publish to TER | ||
run: php ~/.composer/vendor/bin/tailor ter:publish --comment "${{ steps.get-comment.outputs.comment }}" ${{ steps.get-version.outputs.version }} |
This file was deleted.
Oops, something went wrong.
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
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
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