aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-02-27 11:26:09 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-02-27 11:26:09 +0100
commit6daadb6c447757e87c1be9fa6df9917cc834603d (patch)
treef8d73f2cc2d253b46b125aa72ac0bb7cc7606e69 /.travis.yml
parent162954763e6f68e0cf4002822007683bde62fc25 (diff)
downloadwallabag-6daadb6c447757e87c1be9fa6df9917cc834603d.tar.gz
wallabag-6daadb6c447757e87c1be9fa6df9917cc834603d.tar.zst
wallabag-6daadb6c447757e87c1be9fa6df9917cc834603d.zip
Fix authentication for PR by external contributors
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 819d29fd..c6d371a5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -47,6 +47,9 @@ before_script:
47 - if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi; 47 - if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi;
48 - if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag;' -U postgres; fi; 48 - if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag;' -U postgres; fi;
49 49
50before_install:
51 - if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi;
52
50script: 53script:
51 - travis_wait composer update --no-interaction --no-progress 54 - travis_wait composer update --no-interaction --no-progress
52 - ant prepare-$DB 55 - ant prepare-$DB