mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
17 lines
486 B
YAML
17 lines
486 B
YAML
---
|
|
branches:
|
|
only:
|
|
- master
|
|
script:
|
|
- echo "StrictHostKeyChecking=no" >> ~/.ssh/config
|
|
- export IP=$(curl -s http://dokku-ci.herokuapp.com/hosts | tail -1)
|
|
- git config --global user.email "travis-ci@exmaple.com"
|
|
- git config --global user.name "Travis CI"
|
|
- git checkout --orphan orphan HEAD
|
|
- git commit -am 'orphaned'
|
|
- git remote add runner ssh://test@$IP:2022/dokku
|
|
- sleep 8
|
|
- git push runner orphan:master
|
|
notifications:
|
|
irc: "chat.freenode.net#dokku"
|