This repository was archived by the owner on Dec 27, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ matrix:
12
12
include :
13
13
- php : 5.5
14
14
- php : 5.6
15
+ env :
16
+ - EXECUTE_DEPLOYMENT=true
15
17
- php : 7.0
16
18
- php : hhvm
17
19
allow_failures :
@@ -20,16 +22,13 @@ matrix:
20
22
before_install :
21
23
- openssl aes-256-cbc -K $encrypted_f21abcc37842_key -iv $encrypted_f21abcc37842_iv
22
24
-in secrets.tar.enc -out secrets.tar -d
25
+ - phpenv config-rm xdebug.ini
23
26
- travis_retry composer self-update
24
27
25
28
install :
26
- - travis_retry composer install --optimize-autoloader -- prefer-dist --no-interaction
29
+ - travis_retry composer install --prefer-dist --no-interaction
27
30
- composer info -i
28
31
29
- script :
30
- - here call phpunit
31
-
32
- after_script :
33
- - something more
34
-
35
32
after_success :
33
+ - if [[ $EXECUTE_DEPLOYMENT == 'true' && $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then composer install --no-dev --prefer-dist --no-interaction ; fi
34
+ - if [[ $EXECUTE_DEPLOYMENT == 'true' && $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then ./bin/deploy.sh ; fi
You can’t perform that action at this time.
0 commit comments