File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 2626 windows_version :
2727 required : true
2828 type : string
29+ skip_symfony :
30+ required : true
31+ type : boolean
32+ skip_wordpress :
33+ required : true
34+ type : boolean
2935permissions :
3036 contents : read
3137jobs :
@@ -554,7 +560,7 @@ jobs:
554560 exit 1
555561 fi
556562 - name : Test Symfony
557- if : always()
563+ if : always() && !inputs.skip_symfony
558564 run : |
559565 git clone https://github.com/symfony/symfony.git --depth=1
560566 cd symfony
@@ -586,15 +592,15 @@ jobs:
586592 exit 1
587593 fi
588594 - name : ' Symfony Preloading'
589- if : always()
595+ if : always() && !inputs.skip_symfony
590596 run : |
591597 php /usr/bin/composer create-project symfony/symfony-demo symfony_demo --no-progress --ignore-platform-reqs
592598 cd symfony_demo
593599 git rev-parse HEAD
594600 sed -i 's/PHP_SAPI/"cli-server"/g' var/cache/dev/App_KernelDevDebugContainer.preload.php
595601 php -d opcache.preload=var/cache/dev/App_KernelDevDebugContainer.preload.php public/index.php
596602 - name : Test Wordpress
597- if : always()
603+ if : always() && !inputs.skip_wordpress
598604 run : |
599605 git clone https://github.com/WordPress/wordpress-develop.git wordpress --depth=1
600606 cd wordpress
Original file line number Diff line number Diff line change 5959 || ((matrix.branch.version[0] == 8 && matrix.branch.version[1] >= 3) && '22.04')
6060 || '20.04' }}
6161 windows_version : ${{ ((matrix.branch.version[0] == 8 && matrix.branch.version[1] >= 4) || matrix.branch.version[0] >= 9) && '2022' || '2019' }}
62+ skip_symfony : ${{ matrix.branch.version[0] == 8 && matrix.branch.version[1] == 1 }}
63+ skip_wordpress : ${{ matrix.branch.version[0] == 8 && matrix.branch.version[1] == 1 }}
6264 secrets : inherit
You can’t perform that action at this time.
0 commit comments