Skip to content

Commit f45dc1c

Browse files
committed
removed humans.txt
1 parent 50a9cc8 commit f45dc1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ deploy:
5757
on:
5858
repo: "$UPSTREAM_REPO"
5959
branch: "$MASTER_BRANCH"
60-
condition: $TEST_SUITE = "Wraith_Visual_Regression_Testing"
60+
condition: $TRAVIS_PHP_VERSION = "7.0"
6161
after_deploy:
6262
- chmod +x bin/deploy.sh
6363
- ". ./bin/deploy.sh"

bin/install-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# We run this on PR or on push to MASTER_BRANCH.
4-
if [ "$TRAVIS_PULL_REQUEST" != "false" ] || ( [ "$TRAVIS_EVENT_TYPE" == "push" ] && [ "$TRAVIS_REPO_SLUG" == "$UPSTREAM_REPO" ] && [ "$TRAVIS_BRANCH" == "$MASTER_BRANCH" ] ) ; then
4+
if [ "$TRAVIS_PULL_REQUEST" != "false" ] || ( [ "$TRAVIS_EVENT_TYPE" == "push" ] && [ "$TRAVIS_REPO_SLUG" == "$UPSTREAM_REPO" ] && [ "$TRAVIS_BRANCH" == "$MASTER_BRANCH" ] && [ "$TRAVIS_PHP_VERSION" == "7.0" ] ) ; then
55

66
. $HOME/.nvm/nvm.sh
77
nvm install stable

0 commit comments

Comments
 (0)