Skip to content

Commit

Permalink
Merge branch '1.x' into feature/dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
norberttech authored Oct 16, 2023
2 parents 69e8c88 + 910c5ac commit f1b8196
Show file tree
Hide file tree
Showing 289 changed files with 60,620 additions and 64,269 deletions.
6 changes: 6 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ lib-array-dot:
- any: ["src/lib/array-dot/**/*"]
lib-doctrine-dbal-bulk:
- any: ["src/lib/doctrine-dbal-bulk/**/*"]
lib-parquet:
- any: ["src/lib/parquet/**/*"]
lib-dremel:
- any: ["src/lib/dremel/**/*"]

adapter-amphp:
- any: ["src/adapter/etl-adapter-amphp/**/*"]
Expand All @@ -26,6 +30,8 @@ adapter-doctrine:
- any: ["src/adapter/etl-adapter-doctrine/**/*"]
adapter-elasticsearch:
- any: ["src/adapter/etl-adapter-elasticsearch/**/*"]
adapter-meilisearch:
- any: ["src/adapter/etl-adapter-meilisearch/**/*"]
adapter-google-sheet:
- any: ["src/adapter/etl-adapter-google-sheet/**/*"]
adapter-http:
Expand Down
106 changes: 106 additions & 0 deletions .github/workflows/benchmark-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
name: Benchmark History

on:
workflow_dispatch:
inputs:
tag_name:
description: 'Git Tag Name'
required: false
branch_name:
description: 'Git Branch Name'
required: true
default: '1.x'
push:
branches: [ 1.x ]

jobs:
benchmark:
name: "Benchmark History"

runs-on: ${{ matrix.operating-system }}

strategy:
fail-fast: false
matrix:
dependencies:
- "locked"
php-version:
- "8.1"
operating-system:
- "ubuntu-latest"

steps:
- name: "Set Git Ref"
run: |
if [[ "${{ github.event_name }}" == "push" ]]; then
echo "GIT_REF=${{ github.ref }}" >> $GITHUB_ENV
elif [[ "${{ github.event.inputs.tag_name }}" != "" ]]; then
echo "GIT_REF=refs/tags/${{ github.event.inputs.tag_name }}" >> $GITHUB_ENV
else
echo "GIT_REF=${{ github.event.inputs.branch_name }}" >> $GITHUB_ENV
fi
- name: "Set Benchmark Tag"
run: |
if [[ "${{ github.event_name }}" == "push" ]]; then
echo "PHPBENCH_TAG=1.x" >> $GITHUB_ENV
elif [[ "${{ github.event.inputs.tag_name }}" != "" ]]; then
echo "PHPBENCH_TAG=${{ github.event.inputs.tag_name }}" >> $GITHUB_ENV
else
echo "PHPBENCH_TAG=${{ github.event.inputs.branch_name }}" >> $GITHUB_ENV
fi
- name: "Checkout to specific ref"
uses: "actions/checkout@v2"
with:
ref: ${{ env.GIT_REF }}

- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: none
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1

- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: none
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1

- name: "Get Composer Cache Directory"
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: "Cache Composer dependencies"
uses: "actions/cache@v3"
with:
path: "${{ steps.composer-cache.outputs.dir }}"
key: "php-${{ matrix.php-version }}-locked-composer-${{ hashFiles('**/composer.lock') }}"
restore-keys: |
php-${{ matrix.php-version }}-locked-composer-
- name: "Install locked dependencies"
run: "composer install --no-interaction --no-progress"

- name: "Cache PHPBench reports"
uses: "actions/cache@v3"
with:
path: "var/phpbench"
key: "php-${{ matrix.php-version }}-${{ env.PHPBENCH_TAG }}-phpbench"
restore-keys: |
php-${{ matrix.php-version }}-${{ env.PHPBENCH_TAG }}-phpbench-
- name: "Benchmark"
run: |
echo '# Flow PHP - Benchmark - ${{ env.PHPBENCH_TAG }}' >> $GITHUB_STEP_SUMMARY
echo ' ' >> $GITHUB_STEP_SUMMARY
echo '---' >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
composer test:benchmark -- --tag=${{ env.PHPBENCH_TAG }} --progress=none >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
6 changes: 5 additions & 1 deletion .github/workflows/monorepo-split.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ jobs:
split_repository: 'array-dot'
- local_path: 'src/lib/doctrine-dbal-bulk'
split_repository: 'doctrine-dbal-bulk'
- local_path: 'src/lib/parquet'
split_repository: 'parquet'
- local_path: 'src/lib/dremel'
split_repository: 'dremel'

- local_path: 'src/adapter/etl-adapter-amphp'
split_repository: 'etl-adapter-amphp'
Expand All @@ -40,7 +44,7 @@ jobs:
- local_path: 'src/adapter/etl-adapter-elasticsearch'
split_repository: 'etl-adapter-elasticsearch'
- local_path: 'src/adapter/etl-adapter-meilisearch'
split_repository: 'etl-adapter-meilisearch'
split_repository: 'etl-adapter-meilisearch'
- local_path: 'src/adapter/etl-adapter-google-sheet'
split_repository: 'etl-adapter-google-sheet'
- local_path: 'src/adapter/etl-adapter-http'
Expand Down
99 changes: 99 additions & 0 deletions .github/workflows/test-benchmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
name: Benchmark Suite

on:
pull_request:
paths:
- '.github/workflows/**'
- 'src/adapter/**'
- 'src/core/**'
- 'src/lib/**'
- 'tools/**'
- 'composer.lock'

jobs:
benchmark:
name: "Benchmark"

runs-on: ${{ matrix.operating-system }}

strategy:
fail-fast: false
matrix:
dependencies:
- "locked"
php-version:
- "8.1"
operating-system:
- "ubuntu-latest"

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

- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: none
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1

- name: "Get Composer Cache Directory"
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: "Cache Composer dependencies"
uses: "actions/cache@v3"
with:
path: "${{ steps.composer-cache.outputs.dir }}"
key: "php-${{ matrix.php-version }}-locked-composer-${{ hashFiles('**/composer.lock') }}"
restore-keys: |
php-${{ matrix.php-version }}-locked-composer-
- name: "Install locked dependencies"
run: "composer install --no-interaction --no-progress"

- name: "Cache PHPBench reports"
uses: "actions/cache@v3"
with:
path: "var/phpbench"
key: "php-${{ matrix.php-version }}-1.x-phpbench"
restore-keys: |
php-${{ matrix.php-version }}-1.x-phpbench-
- name: Adding main headline
run: |
echo '# Flow PHP - Benchmark' >> $GITHUB_STEP_SUMMARY
echo ' ' >> $GITHUB_STEP_SUMMARY
echo '---' >> $GITHUB_STEP_SUMMARY
- name: "Benchmark Extractors"
run: |
echo ' ' >> $GITHUB_STEP_SUMMARY
echo '## Extractors' >> $GITHUB_STEP_SUMMARY
echo ' ' >> $GITHUB_STEP_SUMMARY
echo '---' >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
composer test:benchmark -- --ref=1.x --progress=none --group=extractor >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- name: "Benchmark Transformers"
run: |
echo ' ' >> $GITHUB_STEP_SUMMARY
echo '## Transformers' >> $GITHUB_STEP_SUMMARY
echo ' ' >> $GITHUB_STEP_SUMMARY
echo '---' >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
composer test:benchmark -- --ref=1.x --progress=none --group=transformer >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- name: "Benchmark Entry Factories"
run: |
echo ' ' >> $GITHUB_STEP_SUMMARY
echo '## Entry Factory' >> $GITHUB_STEP_SUMMARY
echo ' ' >> $GITHUB_STEP_SUMMARY
echo '---' >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
composer test:benchmark -- --ref=1.x --progress=none --group=entry_factory >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
71 changes: 71 additions & 0 deletions .github/workflows/test-mutations.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Test Mutations

on:
pull_request:
paths:
- '.github/workflows/**'
- 'src/adapter/**'
- 'src/core/**'
- 'src/lib/**'
- 'tools/**'
- 'composer.lock'
push:
branches: [ 1.x ]

jobs:
mutation-tests:
name: "Mutation Tests"

runs-on: ${{ matrix.operating-system }}

strategy:
fail-fast: false
matrix:
dependencies:
- "locked"
php-version:
- "8.1"
operating-system:
- "ubuntu-latest"

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

- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: pcov
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1

- name: "Get Composer Cache Directory"
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: "Cache Composer dependencies"
uses: "actions/cache@v3"
with:
path: "${{ steps.composer-cache.outputs.dir }}"
key: "php-${{ matrix.php-version }}-locked-composer-${{ hashFiles('**/composer.lock') }}"
restore-keys: |
php-${{ matrix.php-version }}-locked-composer-
- name: "Create cache directory"
run: "mkdir -p var/infection/cache"

- name: "Cache infection results"
uses: "actions/cache@v3"
with:
path: "var/infection/cache"
key: "php-${{ matrix.php-version }}-cache-infection-${{ github.run_id }}"
restore-keys: |
php-${{ matrix.php-version }}-cache-infection-
- name: "Install locked dependencies"
run: "composer install --no-interaction --no-progress --no-suggest"

- name: "Mutation Tests"
run: "composer test:mutation"
Loading

0 comments on commit f1b8196

Please sign in to comment.