Skip to content

Commit b4866b3

Browse files
committed
Add CLI profiling support and callmap tracking
Introduced CLI profiling capabilities by enhancing the profiler to handle CLI execution, added new `CliCallmap` functionality for tracking xhprof data, and implemented CLI-specific collectors. Updated multiple components, including configuration, collectors, and storage, to support this feature seamlessly.
1 parent b882110 commit b4866b3

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/php.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,9 @@ jobs:
4343
path: ${{ steps.composercache.outputs.dir }}
4444
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
4545
restore-keys: ${{ runner.os }}-composer-
46-
- name: Install dependencies (highest)
47-
if: matrix.composer-deps == 'highest'
48-
run: composer update --prefer-dist --no-progress --no-suggest
49-
- name: Install dependencies (lowest)
50-
if: matrix.composer-deps == 'lowest'
51-
run: composer update --prefer-dist --no-progress --no-suggest --prefer-lowest
52-
- name: Install dependencies (lock)
5346
if: matrix.composer-deps == 'lock'
47+
env:
48+
COMPOSER_AUTH: '{"http-basic":{"repo.magento.com":{"username":"${{secrets.MAGENTO_AUTH_USER}}","password":"${{secrets.MAGENTO_AUTH_PASS}}"}}}'
5449
run: |
5550
composer install --no-progress --no-suggest
5651
- name: Run the tests on unix

0 commit comments

Comments
 (0)