Skip to content

Commit 0ad5d8f

Browse files
committed
Trigger CI with no modifications
Alternative for: #3279 IRC we needed the development branch for PHPCS support for PHP8.4, it might be they backported this already as PHP8.5 is now out so we need to check if they fixed this in a stable build. Edit: Checked, the fixes are not backported, so we still need the development branch Disable unused version. Fix syntax job Revert "Fix syntax job" This reverts commit 823c571. Revert "Disable unused version." This reverts commit 30f7aa1. Revert "Trigger CI with no modifications" This reverts commit d56cee0. Try alternative solution Investigate the warning Re-order as we don´t get a simple composer.json yet Fixup Try with the new image Fixup use the correct path Trigger with the new PHP version Fix the image again Use right dir Use right syntax Update fix_pipelinecomponents_image.sh
1 parent d5ef945 commit 0ad5d8f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/jobs/fix_pipelinecomponents_image.sh

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@ mydir=$(pwd)
1515

1616
echo "Before /app/composer.json:"
1717
cat /app/composer.json
18-
sed -i 's/"phpcompatibility\/php-compatibility": "9.3.5"/"phpcompatibility\/php-compatibility": "dev-develop"/g' /app/composer.json
19-
sed -i 's/"squizlabs\/php_codesniffer": "3.13.2"/"squizlabs\/php_codesniffer": "^3.13.3"/g' /app/composer.json
18+
19+
echo "Install the only needed tool"
20+
cd /app
21+
composer config --no-plugins allow-plugins.dealerdirect/phpcodesniffer-composer-installer true
22+
composer update
23+
cd "$mydir"
24+
2025
echo "After /app/composer.json:"
2126
cat /app/composer.json
22-
23-
cd /app; composer update
24-
cd $mydir

0 commit comments

Comments
 (0)