ci: cache php environment #478
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: "Continuous Integration" | ||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
services: | ||
oracle: | ||
image: deepdiver/docker-oracle-xe-11g:2.0 | ||
ports: | ||
- 49160:22 | ||
- 1521:1521 | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
php: [8.0, 8.1, 8.2, 8.3, 8.4] | ||
stability: [prefer-stable] | ||
name: PHP ${{ matrix.php }} - STABILITY ${{ matrix.stability }} | ||
env: | ||
key: ${{ matrix.php }}-v1 | ||
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, gd, memcached, oci8 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Get PHP extension cache hash | ||
id: get-cache-hash | ||
with: | ||
PHP_EXTENSIONS: ${{ env.extensions }} | ||
run: echo hash=$(echo "$PHP_EXTENSIONS" | md5sum | awk '{print $1}') >> $GITHUB_OUTPUT | ||
Check failure on line 39 in .github/workflows/continuous-integration.yml
|
||
- name: Setup cache environment | ||
id: extcache | ||
uses: shivammathur/cache-extensions@v1 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
extensions: ${{ env.extensions }} | ||
key: php-extensions-${{ steps.get-cache-hash.outputs.hash }} | ||
- name: Cache extensions | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.extcache.outputs.dir }} | ||
key: ${{ steps.extcache.outputs.key }} | ||
restore-keys: ${{ steps.extcache.outputs.key }} | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
extensions: ${{ env.extensions }} | ||
tools: composer:v2 | ||
coverage: none | ||
- name: Setup Memcached | ||
uses: niden/actions-memcached@v7 | ||
- name: Setup problem matchers | ||
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | ||
- name: Install dependencies | ||
uses: nick-invision/retry@v1 | ||
with: | ||
timeout_minutes: 5 | ||
max_attempts: 5 | ||
command: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress | ||
- name: Execute tests | ||
run: vendor/bin/phpunit |