mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-11 15:16:55 +03:00
53 lines
1.5 KiB
YAML
53 lines
1.5 KiB
YAML
language: php
|
|
sudo: false
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache/files
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- php: 7.4
|
|
env: SKELETON_VERSION="^3.4"
|
|
- php: 7.4
|
|
env: SKELETON_VERSION="^4.4"
|
|
- php: 7.4
|
|
env: SKELETON_VERSION="^5.0"
|
|
allow_failures:
|
|
- php: 7.4
|
|
env: SKELETON_VERSION="^3.4"
|
|
|
|
before_install:
|
|
- phpenv config-rm xdebug.ini || true
|
|
- export SYMFONY_ENDPOINT=https://flex.symfony.com/r/github.com/symfony/recipes-contrib/${TRAVIS_PULL_REQUEST}
|
|
- export PACKAGES=$(curl -s $SYMFONY_ENDPOINT | sed -En 's/.*composer req "([^"]+)".*/\1/p')
|
|
- echo "$PACKAGES"
|
|
|
|
install:
|
|
- composer create-project "symfony/skeleton:${SKELETON_VERSION}" flex
|
|
- cd flex
|
|
- composer config extra.symfony.allow-contrib true
|
|
|
|
before_script:
|
|
- |
|
|
install_package() {
|
|
composer require --ignore-platform-reqs $@;
|
|
EXIT_CODE=$?;
|
|
|
|
MESSAGE="";
|
|
if [[ EXIT_CODE -eq 0 ]]; then
|
|
exit 0;
|
|
elif [[ EXIT_CODE -eq 1 ]]; then
|
|
MESSAGE="Could not install package and configure package.";
|
|
elif [[ EXIT_CODE -eq 2 ]]; then
|
|
MESSAGE="Could not resolve dependencies.\n# You can ignore this error if your package does not support Symfony $SKELETON_VERSION";
|
|
fi
|
|
|
|
echo -e "\n#\n#\n# $MESSAGE\n#\n#\n#\n";
|
|
exit $EXIT_CODE;
|
|
}
|
|
export -f install_package
|
|
|
|
script: install_package $(echo $PACKAGES)
|