forked from plone/heroku-buildpack-plone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
23 lines (21 loc) · 960 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: |-
KAxwff0x+WjEVDmw47QPcObsIZrshEU0Wbr4lBZjQp6AVb24JSUcvnsgdm8ymTznib
5Psn338DbDhV5WBha4zmYbP9BhjuP6g6l8dKfia7HYc2H9kjeR6Z7KnzVqpTB7qkg2
ilnZ26poVxFuEKsKU2qz4yTVvT+O55dEtY7YaNE= # 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-plone.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 "python configure_zopeconf.py; bin/instance run test.py"