forked from teamniteo/heroku-buildpack-buildout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
23 lines (21 loc) · 918 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
env:
global:
- secure: |-
A4ztPPrAS7WiDI6n9sHbARpydhO72Fm4lg42RQs7w+t92aKanfw9TDVBfH8KoEGogg
bAFvSa43YiaTxdQz2TXr/gBUKCm7Or+SEXYc6v77G/n5lsEFwI4J5fT6uuqZ+zDZhN
lxRHQQ9YGFktl5UG+dVEYWCXpOPi7XAOKUSUjhE=" # HEROKU_API_KEY for [email protected]
before_script:
- wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh
- git remote add heroku [email protected]:heroku-buildpack-buildout.git
- echo "Host heroku.com" >> ~/.ssh/config
- echo " StrictHostKeyChecking no" >> ~/.ssh/config
- echo " CheckHostIP no" >> ~/.ssh/config
- echo " UserKnownHostsFile=/dev/null" >> ~/.ssh/config
- heroku keys:clear
- yes | heroku keys:add
- heroku plugins:install https://github.com/heroku/heroku-repo.git
- heroku plugins:install https://github.com/glenngillen/heroku-exit-status.git
- heroku repo:purge_cache
script:
- yes | git push heroku master
- heroku run "bin/test"