Travis CI: Add PHP 7.4, improve deployment logging
This commit is contained in:
parent
681ad27158
commit
92a8a299f8
2 changed files with 5 additions and 0 deletions
|
@ -3,19 +3,23 @@ set -e
|
|||
|
||||
# setup build system
|
||||
echo "Installing build dependencies..."
|
||||
echo
|
||||
|
||||
case "$1" in
|
||||
"--deploy")
|
||||
echo "Synchronizing package index files..."
|
||||
sudo apt-get update
|
||||
echo
|
||||
|
||||
echo "Installing cloc..."
|
||||
sudo apt-get install -y cloc
|
||||
echo
|
||||
|
||||
echo "Installing phpDocumentor..."
|
||||
curl --location --output "$PICO_TOOLS_DIR/phpdoc" \
|
||||
"https://github.com/phpDocumentor/phpDocumentor2/releases/latest/download/phpDocumentor.phar"
|
||||
chmod +x "$PICO_TOOLS_DIR/phpdoc"
|
||||
echo
|
||||
;;
|
||||
esac
|
||||
|
||||
|
|
|
@ -19,6 +19,7 @@ jobs:
|
|||
- php: 7.1
|
||||
- php: 7.2
|
||||
- php: 7.3
|
||||
- php: 7.4
|
||||
- php: nightly
|
||||
- php: hhvm-3.27 # until Sep 2019
|
||||
- php: hhvm-3.30 # until Nov 2019
|
||||
|
|
Loading…
Reference in a new issue