blob: 8ee3be3cfe5b166aee8655886695a502eb2e7eb0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
export LOGFILE=bot.log
export name="ManaPlus"
source ./tools/ci/scripts/init.sh
source ./tools/ci/scripts/bot.sh
aptget_install ii psmisc
bot_connect "manaplusbot2"
bot_join "#manaplus"
export gitcommit=$(echo ${CI_BUILD_REF} | cut -c 1-7)
bot_message "#manaplus" "[${C}02${name}:${CI_BUILD_REF_NAME}${R}] Build failed: ${C}03${gitcommit}${R}. See https://gitlab.com/manaplus/manaplus/builds"
bot_message "#manaplus" "hightlight {41444d494e}"
bot_exit
exit 0
|