Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .codecov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ component_management:
name: bridge-symfony-http-foundation-telemetry
paths:
- src/bridge/symfony/http-foundation-telemetry/**
- component_id: bridge-symfony-filesystem-bundle
name: bridge-symfony-filesystem-bundle
paths:
- src/bridge/symfony/filesystem-bundle/**
- component_id: bridge-symfony-postgresql-bundle
name: bridge-symfony-postgresql-bundle
paths:
Expand Down
24 changes: 22 additions & 2 deletions .github/workflows/job-arrow-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,18 @@ jobs:
- name: Set LIBCLANG_PATH (Ubuntu)
if: runner.os == 'Linux'
run: |
LIBCLANG_SO=$(find /usr/lib -name 'libclang*.so' -o -name 'libclang*.so.*' 2>/dev/null | head -1)
# Find the canonical libclang.so shared library, excluding the
# Clang runtime support libraries under llvm-*/lib/clang/*/lib/.
LIBCLANG_SO=$(find /usr/lib \
\( -name 'libclang.so' -o -name 'libclang.so.*' -o -name 'libclang-*.so' -o -name 'libclang-*.so.*' \) \
-not -path '*/clang/*/lib/*' \
2>/dev/null | head -1)
if [ -z "$LIBCLANG_SO" ]; then
echo "Could not locate libclang.so under /usr/lib" >&2
exit 1
fi
echo "LIBCLANG_PATH=$(dirname "$LIBCLANG_SO")" >> $GITHUB_ENV
echo "Detected libclang at: $LIBCLANG_SO"

- name: Build extension
working-directory: src/extension/arrow-ext
Expand Down Expand Up @@ -130,8 +140,18 @@ jobs:
- name: Set LIBCLANG_PATH (Ubuntu)
if: runner.os == 'Linux'
run: |
LIBCLANG_SO=$(find /usr/lib -name 'libclang*.so' -o -name 'libclang*.so.*' 2>/dev/null | head -1)
# Find the canonical libclang.so shared library, excluding the
# Clang runtime support libraries under llvm-*/lib/clang/*/lib/.
LIBCLANG_SO=$(find /usr/lib \
\( -name 'libclang.so' -o -name 'libclang.so.*' -o -name 'libclang-*.so' -o -name 'libclang-*.so.*' \) \
-not -path '*/clang/*/lib/*' \
2>/dev/null | head -1)
if [ -z "$LIBCLANG_SO" ]; then
echo "Could not locate libclang.so under /usr/lib" >&2
exit 1
fi
echo "LIBCLANG_PATH=$(dirname "$LIBCLANG_SO")" >> $GITHUB_ENV
echo "Detected libclang at: $LIBCLANG_SO"

- name: Install PIE
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/monorepo-split.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ jobs:
split_repository: 'psr7-telemetry-bridge'
- local_path: 'src/bridge/psr18/telemetry'
split_repository: 'psr18-telemetry-bridge'
- local_path: 'src/bridge/symfony/filesystem-bundle'
split_repository: 'symfony-filesystem-bundle'
- local_path: 'src/bridge/symfony/http-foundation'
split_repository: 'symfony-http-foundation-bridge'
- local_path: 'src/bridge/symfony/http-foundation-telemetry'
Expand Down
8 changes: 8 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
"flow-php/psr7-telemetry-bridge": "self.version",
"flow-php/psr18-telemetry-bridge": "self.version",
"flow-php/snappy": "self.version",
"flow-php/symfony-filesystem-bundle": "self.version",
"flow-php/symfony-http-foundation-bridge": "self.version",
"flow-php/symfony-http-foundation-telemetry-bridge": "self.version",
"flow-php/symfony-postgresql-bundle": "self.version",
Expand Down Expand Up @@ -143,6 +144,7 @@
"src/bridge/openapi/specification/src/Flow",
"src/bridge/psr7/telemetry/src/Flow",
"src/bridge/psr18/telemetry/src/Flow",
"src/bridge/symfony/filesystem-bundle/src/Flow",
"src/bridge/symfony/http-foundation-telemetry/src/Flow",
"src/bridge/symfony/http-foundation/src/Flow",
"src/bridge/symfony/postgresql-bundle/src/Flow",
Expand Down Expand Up @@ -242,6 +244,7 @@
"src/bridge/openapi/specification/tests/Flow",
"src/bridge/psr7/telemetry/tests/Flow",
"src/bridge/psr18/telemetry/tests/Flow",
"src/bridge/symfony/filesystem-bundle/tests/Flow",
"src/bridge/symfony/http-foundation-telemetry/tests/Flow",
"src/bridge/symfony/http-foundation/tests/Flow",
"src/bridge/symfony/postgresql-bundle/tests/Flow",
Expand Down Expand Up @@ -318,6 +321,7 @@
"@test:bridge:phpunit-telemetry",
"@test:bridge:psr7-telemetry",
"@test:bridge:psr18-telemetry",
"@test:bridge:symfony-filesystem-bundle",
"@test:bridge:symfony-http-foundation",
"@test:bridge:symfony-http-foundation-telemetry",
"@test:bridge:symfony-postgresql-bundle",
Expand Down Expand Up @@ -410,6 +414,10 @@
"tools/phpunit/vendor/bin/phpunit --testsuite=bridge-psr18-telemetry-unit --log-junit ./var/phpunit/logs/bridge-psr18-telemetry-unit.junit.xml --coverage-clover=./var/phpunit/coverage/clover/bridge-psr18-telemetry-unit.coverage.xml",
"tools/phpunit/vendor/bin/phpunit --testsuite=bridge-psr18-telemetry-integration --log-junit ./var/phpunit/logs/bridge-psr18-telemetry-integration.junit.xml --coverage-clover=./var/phpunit/coverage/clover/bridge-psr18-telemetry-integration.coverage.xml"
],
"test:bridge:symfony-filesystem-bundle": [
"tools/phpunit/vendor/bin/phpunit --testsuite=bridge-symfony-filesystem-bundle-unit --log-junit ./var/phpunit/logs/bridge-symfony-filesystem-bundle-unit.junit.xml --coverage-clover=./var/phpunit/coverage/clover/bridge-symfony-filesystem-bundle-unit.coverage.xml",
"tools/phpunit/vendor/bin/phpunit --testsuite=bridge-symfony-filesystem-bundle-integration --log-junit ./var/phpunit/logs/bridge-symfony-filesystem-bundle-integration.junit.xml --coverage-clover=./var/phpunit/coverage/clover/bridge-symfony-filesystem-bundle-integration.coverage.xml"
],
"test:bridge:symfony-http-foundation": [
"tools/phpunit/vendor/bin/phpunit --testsuite=bridge-symfony-http-foundation-unit --log-junit ./var/phpunit/logs/bridge-symfony-http-foundation-unit.junit.xml --coverage-clover=./var/phpunit/coverage/clover/bridge-symfony-http-foundation-unit.coverage.xml",
"tools/phpunit/vendor/bin/phpunit --testsuite=bridge-symfony-http-foundation-integration --log-junit ./var/phpunit/logs/bridge-symfony-http-foundation-integration.junit.xml --coverage-clover=./var/phpunit/coverage/clover/bridge-symfony-http-foundation-integration.coverage.xml"
Expand Down
Loading
Loading