We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 26b0b86 + c8eb116 commit 5624246Copy full SHA for 5624246
.travis.yml
@@ -37,10 +37,17 @@ branches:
37
- gh-pages
38
39
before_install:
40
- - bash .ci/before_install.sh
41
# setup git config
42
- git config --global user.name "embARC Automated Bot"
43
- git config --global user.email "[email protected]"
+ - >
44
+ if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
45
+ diff=$(git diff FETCH_HEAD master .ci)
46
+ if [ "$diff" == "" ]; then
47
+ git checkout remotes/origin/master -- .ci
48
+ fi
49
50
+ - bash .ci/before_install.sh
51
52
after_success:
53
- bash -c "$STATUS" success "Local $NAME testing has passed"
0 commit comments