mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 02:30:03 +08:00
a830a3e2a4
* Update travis setting * Update after failure script * Fix lint * Update comment * Test bot * Update ci script * Update ci * Test lint * Update ci * Check var * Use log file * Fix lint * Check -f * Lint * Fix json * Use vim script instead * Fixup * quit afte comment * Update lint * Fix lint * Install gvim * Remove file * Install vim before test * Fix lint * Fix github api * Use neovim report error * Update travis * Fix unkonwn command * Use origin/dev * Update lint * Fix unkown command * Fix lint * Update config * Fix lint * Fix cache * Fix cache * Fix neovim install * Fix neovim install * Fix install * Use dockerfile * Fix lint * Update install script * Fix lint * Fix type * Fix alow faile * Fix jobs * Fix docker * Fix docker * Fix makefile * Update commenter vim script
49 lines
1.6 KiB
VimL
49 lines
1.6 KiB
VimL
exe 'set nocp'
|
|
set rtp+=build/GitHub.vim
|
|
so build/GitHub.vim/plugin/github.vim
|
|
so build/GitHub.vim/autoload/github/api/issues.vim
|
|
so build/GitHub.vim/autoload/github/api/util.vim
|
|
let s:log = filereadable('build_log') ? system('cat build_log') : ''
|
|
function! s:update_log(log, summary, new_log) abort
|
|
let log = split(a:log, "\n")
|
|
let begin = -1
|
|
let end = -1
|
|
for i in range(len(log))
|
|
if log[i] =~ a:summary
|
|
let begin = i
|
|
endif
|
|
if begin != -1 && log[i] ==# '</details>'
|
|
let end = i
|
|
endif
|
|
endfor
|
|
return a:log . "\n" . a:new_log
|
|
|
|
endfunction
|
|
if !empty(s:log)
|
|
if $LINT == 'vader'
|
|
let s:summary = $VIM . ' ' . $LINT . ' build log'
|
|
else
|
|
let s:summary = $LINT . ' build log'
|
|
endif
|
|
let s:log = '<details><summary>' . s:summary . "</summary>\n" . s:log . "\n</details>"
|
|
let s:comments = github#api#issues#List_comments('SpaceVim', 'SpaceVim',$TRAVIS_PULL_REQUEST ,'')
|
|
if empty(s:comments)
|
|
call github#api#issues#Create_comment('SpaceVim','SpaceVim', $TRAVIS_PULL_REQUEST, {'body': s:log}, 'SpaceVimBot', $BOTSECRET)
|
|
else
|
|
let s:nr = 0
|
|
for s:comment in s:comments
|
|
if s:comment.user.login ==# 'SpaceVimBot'
|
|
let s:nr = s:comment.id
|
|
break
|
|
endif
|
|
endfor
|
|
if s:nr == 0
|
|
call github#api#issues#Create_comment('SpaceVim','SpaceVim', $TRAVIS_PULL_REQUEST, {'body': s:log}, 'SpaceVimBot', $BOTSECRET)
|
|
else
|
|
call github#api#issues#Edit_comment('SpaceVim','SpaceVim', s:nr,
|
|
\ {'body': s:update_log(s:comment.body, s:summary, s:log)}, 'SpaceVimBot', $BOTSECRET)
|
|
endif
|
|
endif
|
|
endif
|
|
quit
|