This repository was archived by the owner on Aug 1, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +17
-18
lines changed Expand file tree Collapse file tree 2 files changed +17
-18
lines changed Original file line number Diff line number Diff line change 11#! /bin/sh
22set -ex
33hhvm --version
4- echo hhvm.jit=0 >> /etc/hhvm/php.ini
5- curl https://getcomposer.org/installer | hhvm --php -- /dev/stdin --install-dir=/usr/local/bin --filename=composer
64
7- cd /var/source
8- hhvm /usr/local/bin/composer install
5+ composer install
96
10- hh_server --check $( pwd )
11- hhvm -d hhvm.php7.all=0 vendor/bin/phpunit tests/
12- hhvm -d hhvm.php7.all=1 vendor/bin/phpunit tests/
7+ hh_client
8+ hhvm vendor/bin/phpunit
9+ # hhvm vendor/bin/hhast-lint
1310
14- sed -i ' /enable_experimental_tc_features/d' .hhconfig
11+ # Make sure we pass when a release is required
12+ EXPORT_DIR=$( mktemp -d)
13+ git archive --format=tar -o " ${EXPORT_DIR} /exported.tar" HEAD
14+ cd " $EXPORT_DIR "
15+ tar -xf exported.tar
16+ composer install --no-dev
17+ echo > .hhconfig
1518hh_server --check $( pwd)
Original file line number Diff line number Diff line change 1- sudo : required
2- language : generic
3- services :
4- - docker
5- env :
6- - HHVM_VERSION=latest
7- - HHVM_VERSION=nightly
8- install :
9- - docker pull hhvm/hhvm:$HHVM_VERSION
1+ language : php
2+ php :
3+ - hhvm
4+ - hhvm-3.24
5+ - hhvm-nightly
106script :
11- - docker run -v $(pwd):/var/source hhvm/hhvm:$HHVM_VERSION /var/source /.travis.sh
7+ - . /.travis.sh
You can’t perform that action at this time.
0 commit comments