diff --git a/.gitignore b/.gitignore index e70701c9..97331530 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +JSON.sh halloween *.raw SocksProxy.php diff --git a/.travis.yml b/.travis.yml index 5bfb044a..14affd99 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,2 +1,8 @@ +language: php +php: + - '7.1' + +before_install: echo "phar.readonly = 0" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini + script: -- curl https://api.rollbar.com/api/1/deploy/ -F access_token=f9fff6689aea4905b58eec73f66c791d -F environment=production -F revision=`git log -n 1 --pretty=format:"%H"` -F local_username=$USER +- tests/makephar.sh diff --git a/tests/makephar.sh b/tests/makephar.sh new file mode 100755 index 00000000..36f8d373 --- /dev/null +++ b/tests/makephar.sh @@ -0,0 +1,14 @@ +#!/bin/sh -e + +php makephar.php + +[ -d JSON.sh ] || git clone https://github.com/dominictarr/JSON.sh + +for chat_id in $destinations;do + ID=$(curl https://api.telegram.org/bot$token/sendMessage -F text=" Recent Commits to MadelineProto:master +$TRAVIS_COMMIT_MESSAGE + +$TRAVIS_COMMIT_MESSAGE" -F parse_mode="HTML" -F chat_id=$chat_id | JSON.sh/JSON.sh -s | egrep '\["result","message_id"\]' | cut -f 2 | cut -d '"' -f 2) + curl https://api.telegram.org/bot$token/sendDocument -F caption="md5: $(md5sum madeline.phar | sed 's/\s.*//g') +commit: $TRAVIS_COMMIT" -F chat_id=$chat_id -F document=@madeline.phar -F reply_to_message_id=$ID +done