fix usage with crontab (#51) #245
Workflow file for this run
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
name: Tasks | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint-php: | |
name: "php: ${{ matrix.php }} TYPO3: ${{ matrix.typo3 }} sentry/sdk: ${{ matrix.sentry }}" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '8.1', '8.2', '8.3' ] | |
typo3: [ '11', '12', '13' ] | |
sentry: [ false, true ] | |
exclude: | |
- php: '8.1' | |
typo3: '13' | |
sentry: true | |
- php: '8.1' | |
typo3: '13' | |
sentry: false | |
steps: | |
- name: Setup PHP with PECL extension | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
# - uses: mirromutth/[email protected] | |
# with: | |
# mysql version: '5.7' | |
# mysql database: 'typo3_test' | |
# mysql root password: 'root' | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.composer/cache/files | |
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.php }}-composer- | |
- run: composer require typo3/minimal="^${{ matrix.typo3 }}" --dev --ignore-platform-req=php+ | |
- run: composer remove sentry/sdk --dev | |
if: ${{ ! matrix.sentry }} | |
- run: composer install --no-interaction --no-progress --ignore-platform-req=php+ | |
- run: ./vendor/bin/grumphp run --ansi | |
- run: composer test | |
- run: jq 'del(.logs.html)' infection.json > infection.json.new && mv infection.json.new infection.json | |
- run: composer infection | |
- uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: Resources/Public/test-result/clover.xml | |
ter-release: | |
name: TER release | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
needs: [ lint-php ] | |
env: | |
TYPO3_EXTENSION_KEY: 'server_timing' | |
REPOSITORY_URL: 'https://github.com/Kanti/server-timing' | |
TYPO3_API_TOKEN: ${{ secrets.TYPO3_API_TOKEN }} | |
TYPO3_API_USERNAME: ${{ secrets.TYPO3_API_USERNAME }} | |
TYPO3_API_PASSWORD: ${{ secrets.TYPO3_API_PASSWORD }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
extensions: intl, mbstring, xml, soap, zip, curl | |
- name: Install typo3/tailor | |
run: composer global require typo3/tailor --prefer-dist --no-progress | |
- name: Upload EXT:server_timing to TER | |
run: | | |
sed -i 's/InstalledVersions::getPrettyVersion('\''kanti\/server-timing'\'')/'\''${{ steps.get_version.outputs.VERSION }}'\''/g' ext_emconf.php \ | |
&& git config --global user.email "no@one" \ | |
&& git config --global user.name "No One" \ | |
&& git add ext_emconf.php \ | |
&& git commit -m 'x' -n \ | |
&& git archive -o archive.zip HEAD --prefix=server_timing-${{ steps.get_version.outputs.VERSION }}/ \ | |
&& git reset --hard HEAD~ \ | |
&& curl -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/Kanti/server-timing/releases/tags/${{ steps.get_version.outputs.VERSION }} > release.json \ | |
&& php ~/.composer/vendor/bin/tailor ter:publish ${{ steps.get_version.outputs.VERSION }} --artefact=archive.zip \ | |
--comment="$(cat release.json | jq -r '.name') | |
$(cat release.json | jq -r '.body') | |
$(cat release.json | jq -r '.html_url')" |