Skip to content

Commit 9626b10

Browse files
committed
Bump
1 parent d3eca11 commit 9626b10

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.github/workflows/nightly.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ jobs:
8383
sudo service mysql start
8484
mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
8585
mysql -uroot -proot -e "SET GLOBAL local_infile = true"
86+
git fetch origin
87+
git checkout master .github/jit_check.php .github/nightly.php
8688
- name: Enable Opcache
8789
run: |
8890
echo memory_limit=-1 >> /etc/php.d/opcache.ini
@@ -108,13 +110,6 @@ jobs:
108110
echo opcache.jit_hot_side_exit=1 >> /etc/php.d/opcache.ini
109111
php -v
110112
111-
- name: Test multiple libraries and frameworks in parallel
112-
if: matrix.branch.ref != 'PHP-8.0'
113-
run: |
114-
sudo prlimit --pid $$ --nofile=1048576:1048576
115-
116-
php $GITHUB_WORKSPACE/.github/nightly.php || exit $?
117-
118113
- name: Test PHPSeclib
119114
if: always()
120115
run: |
@@ -127,6 +122,7 @@ jobs:
127122
php $GITHUB_WORKSPACE/.github/jit_check.php vendor/bin/paratest --verbose --configuration=tests/phpunit.xml --runner=WrapperRunner || exit $?
128123
129124
- name: Test Psalm
125+
if: always()
130126
run: |
131127
git clone https://github.com/vimeo/psalm --depth 1
132128
cd psalm
@@ -138,6 +134,7 @@ jobs:
138134
php $GITHUB_WORKSPACE/.github/jit_check.php ./psalm --no-cache || exit $?
139135
140136
- name: Test PHPStan
137+
if: always()
141138
if: matrix.branch.ref != 'PHP-8.2'
142139
run: |
143140
git clone https://github.com/phpstan/phpstan-src --depth 1
@@ -150,6 +147,13 @@ jobs:
150147
php $GITHUB_WORKSPACE/.github/jit_check.php bin/phpstan clear-result-cache
151148
php $GITHUB_WORKSPACE/.github/jit_check.php bin/phpstan || exit $?
152149
150+
- name: Test multiple libraries and frameworks in parallel
151+
if: matrix.branch.ref != 'PHP-8.0'
152+
run: |
153+
sudo prlimit --pid $$ --nofile=1048576:1048576
154+
155+
php $GITHUB_WORKSPACE/.github/nightly.php || exit $?
156+
153157
- name: 'Symfony Preloading'
154158
run: |
155159
php /usr/bin/composer create-project symfony/symfony-demo symfony_demo --no-progress --ignore-platform-reqs
@@ -162,4 +166,4 @@ jobs:
162166
if: failure()
163167
uses: ./.github/actions/notify-slack
164168
with:
165-
token: ${{ secrets.ACTION_MONITORING_SLACK }}
169+
token: ${{ secrets.ACTION_MONITORING_SLACK }}

0 commit comments

Comments
 (0)