1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

TravisCIでLINE Notifyを使う

Last updated at Posted at 2016-10-12

やること

よくあるTravisのテスト結果をチャットに投げるやつをLINE Notifyでやります。本当です。

登録

LINE Notifyでトークンを発行します。
マイページ>トークンを発行するからいけます。

トークンは再表示しないようなのでちゃんとコピーしといてください。
(新しくトークルームを作ると何かLINE Notifyのトークルーム選択画面への反映に時間かかるんですけど僕だけですかね)

secureで暗号化

トークンをそのまま.travis.ymlに書くわけにもいかないのでsecureで暗号化します。

カレントディレクトリは.travis.ymlに移動しておいてください。

gem install travis
travis encrypt "LINE_API_KEY=YOUR_API_KEY" --add env.global
で.travis.ymlに暗号化されたのが書き込まれてるはずです。

More optins>Settings内から環境変数を設定しても多分大丈夫です。

.travis.yml編集

テストのスクリプトなどの後に以下を追加します。

.travis.yml
...

after_success:
- curl -X POST -H 'Authorization:Bearer '$LINE_API_KEY -F "message=Success" 'https://notify-api.line.me/api/notify'

after_failure:
- curl -X POST -H 'Authorization:Bearer '$LINE_API_KEY -F "message=Failure" 'https://notify-api.line.me/api/notify'

以上でいけるはずです。(多分)

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?