Skip to content

Commit 2ac65da

Browse files
committed
Testing
1 parent 3942972 commit 2ac65da

File tree

2 files changed

+31
-20
lines changed

2 files changed

+31
-20
lines changed

.github/actions/apt-x64/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ runs:
3030
locales \
3131
ldap-utils \
3232
openssl \
33-
slapd \
3433
language-pack-de \
3534
libgmp-dev \
3635
libicu-dev \

.github/workflows/nightly.yml

Lines changed: 31 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ permissions:
3030
contents: read
3131
jobs:
3232
ALPINE:
33-
if: inputs.run_alpine
33+
if: false
3434
name: ALPINE_X64_ASAN_UBSAN_DEBUG_ZTS
3535
runs-on: ubuntu-22.04
3636
container:
@@ -85,6 +85,7 @@ jobs:
8585
token: ${{ secrets.ACTION_MONITORING_SLACK }}
8686

8787
LINUX_X64:
88+
if: false
8889
services:
8990
mysql:
9091
image: mysql:8.3
@@ -218,6 +219,7 @@ jobs:
218219
with:
219220
token: ${{ secrets.ACTION_MONITORING_SLACK }}
220221
LINUX_X32:
222+
if: false
221223
strategy:
222224
fail-fast: false
223225
matrix:
@@ -294,6 +296,7 @@ jobs:
294296
with:
295297
token: ${{ secrets.ACTION_MONITORING_SLACK }}
296298
MACOS:
299+
if: false
297300
strategy:
298301
fail-fast: false
299302
matrix:
@@ -355,7 +358,8 @@ jobs:
355358
with:
356359
token: ${{ secrets.ACTION_MONITORING_SLACK }}
357360
COVERAGE_DEBUG_NTS:
358-
if: inputs.branch == 'master'
361+
if: false
362+
# if: inputs.branch == 'master'
359363
services:
360364
mysql:
361365
image: mysql:8.3
@@ -429,6 +433,8 @@ jobs:
429433
- type: ${{ !inputs.community_verify_type_inference && 'verify_type_inference' || '*never*' }}
430434
name: "COMMUNITY_${{ matrix.type }}"
431435
runs-on: ubuntu-${{ inputs.ubuntu_version }}
436+
container:
437+
image: ubuntu:${{ inputs.ubuntu_version }}
432438
env:
433439
ASAN_OPTIONS: exitcode=139
434440
UBSAN_OPTIONS: print_stacktrace=1
@@ -483,7 +489,8 @@ jobs:
483489
echo opcache.jit_hot_side_exit=1 >> /etc/php.d/opcache.ini
484490
php -v
485491
- name: Test AMPHP
486-
if: always()
492+
if: false
493+
# if: always()
487494
run: |
488495
repositories="amp cache dns file http parallel parser pipeline process serialization socket sync websocket-client websocket-server"
489496
X=0
@@ -501,7 +508,8 @@ jobs:
501508
done
502509
exit $X
503510
- name: Test Laravel
504-
if: always()
511+
if: false
512+
# if: always()
505513
run: |
506514
git clone https://github.com/laravel/framework.git --branch=master --depth=1
507515
cd framework
@@ -514,7 +522,8 @@ jobs:
514522
exit 1
515523
fi
516524
- name: Test ReactPHP
517-
if: always()
525+
if: false
526+
# if: always()
518527
run: |
519528
repositories="async cache child-process datagram dns event-loop promise promise-stream promise-timer stream"
520529
X=0
@@ -532,7 +541,8 @@ jobs:
532541
done
533542
exit $X
534543
- name: Test Revolt PHP
535-
if: always()
544+
if: false
545+
# if: always()
536546
run: |
537547
git clone https://github.com/revoltphp/event-loop.git --depth=1
538548
cd event-loop
@@ -555,16 +565,10 @@ jobs:
555565
# Buggy FFI test in Symfony, see https://github.com/symfony/symfony/issues/47668
556566
php -r '$c = file_get_contents("src/Symfony/Component/VarDumper/Tests/Caster/FFICasterTest.php"); $c = str_replace("public function testCastNonTrailingCharPointer()", "/** @group skip */\n public function testCastNonTrailingCharPointer()", $c); file_put_contents("src/Symfony/Component/VarDumper/Tests/Caster/FFICasterTest.php", $c);'
557567
export SYMFONY_DEPRECATIONS_HELPER=max[total]=999
558-
X=0
559-
for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
560-
php ./phpunit $component --exclude-group tty,benchmark,intl-data,transient --exclude-group skip || EXIT_CODE=$?
561-
if [ ${EXIT_CODE:-0} -gt 128 ]; then
562-
X=1;
563-
fi
564-
done
565-
exit $X
568+
php ./phpunit src/Symfony/Bundle/WebProfilerBundle
566569
- name: Test PHPUnit
567-
if: always()
570+
if: false
571+
# if: always()
568572
run: |
569573
git clone https://github.com/sebastianbergmann/phpunit.git --branch=main --depth=1
570574
cd phpunit
@@ -575,15 +579,17 @@ jobs:
575579
exit 1
576580
fi
577581
- name: 'Symfony Preloading'
578-
if: always()
582+
if: false
583+
# if: always()
579584
run: |
580585
php /usr/bin/composer create-project symfony/symfony-demo symfony_demo --no-progress --ignore-platform-reqs
581586
cd symfony_demo
582587
git rev-parse HEAD
583588
sed -i 's/PHP_SAPI/"cli-server"/g' var/cache/dev/App_KernelDevDebugContainer.preload.php
584589
php -d opcache.preload=var/cache/dev/App_KernelDevDebugContainer.preload.php public/index.php
585590
- name: Test Wordpress
586-
if: always()
591+
if: false
592+
# if: always()
587593
run: |
588594
git clone https://github.com/WordPress/wordpress-develop.git wordpress --depth=1
589595
cd wordpress
@@ -598,11 +604,13 @@ jobs:
598604
exit 1
599605
fi
600606
- name: Notify Slack
601-
if: failure()
607+
if: false
608+
# if: failure()
602609
uses: ./.github/actions/notify-slack
603610
with:
604611
token: ${{ secrets.ACTION_MONITORING_SLACK }}
605612
OPCACHE_VARIATION:
613+
if: false
606614
services:
607615
mysql:
608616
image: mysql:8.3
@@ -694,6 +702,7 @@ jobs:
694702
with:
695703
token: ${{ secrets.ACTION_MONITORING_SLACK }}
696704
MSAN:
705+
if: false
697706
name: MSAN
698707
runs-on: ubuntu-${{ inputs.ubuntu_version }}
699708
steps:
@@ -786,6 +795,7 @@ jobs:
786795
with:
787796
token: ${{ secrets.ACTION_MONITORING_SLACK }}
788797
LIBMYSQLCLIENT:
798+
if: false
789799
name: LIBMYSQLCLIENT
790800
runs-on: ubuntu-${{ inputs.ubuntu_version }}
791801
steps:
@@ -831,7 +841,8 @@ jobs:
831841
with:
832842
token: ${{ secrets.ACTION_MONITORING_SLACK }}
833843
PECL:
834-
if: inputs.branch == 'master'
844+
if: false
845+
# if: inputs.branch == 'master'
835846
runs-on: ubuntu-22.04
836847
env:
837848
CC: ccache gcc
@@ -943,6 +954,7 @@ jobs:
943954
with:
944955
token: ${{ secrets.ACTION_MONITORING_SLACK }}
945956
WINDOWS:
957+
if: false
946958
strategy:
947959
fail-fast: false
948960
matrix:

0 commit comments

Comments
 (0)