We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d57962 commit 5983e1bCopy full SHA for 5983e1b
.github/workflows/jit-nan-bug.yml
@@ -32,8 +32,21 @@ jobs:
32
php -v
33
php -i | grep -E "opcache\.(enable_cli|jit)" || true
34
35
+ - name: Cache dependencies
36
+ uses: actions/cache@v5
37
+ with:
38
+ path: ~/.cache/composer
39
+ key: composer-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}
40
+ restore-keys: |
41
+ composer-${{ matrix.php-version }}-
42
+ composer-
43
+
44
- name: Install dependencies
- run: composer install --no-progress
45
+ run: |
46
+ composer remove --no-update --dev \
47
+ phpstan/phpstan vimeo/psalm \
48
+ infection/infection friendsofphp/php-cs-fixer php-coveralls/php-coveralls
49
+ composer update --prefer-dist --no-interaction --no-progress
50
51
- name: Run reproducer (up to 100 attempts)
52
run: ./jit-nan-bug-reproducer.sh
0 commit comments