stages:
- build
build:
stage: Build
image: alpine:latest
variables:
PY_COLORS: '1'
LOGURU_COLORIZE: "true"
ANSIBLE_FORCE_COLORS: '1'
before_script:
- yum update
script:
- bash ./scripts/foobar.sh
...
- カスタムbashスクリプトを実行するサンプルgitlab ciがあります。私の目標は、エコメッセージ/ログの形式を太字、イタリック体、色で美しく指定することです。そのために出力テキストを書式設定するためのユーティリティですが、テキストは色や書式なしでレンダリングされます。
以下は私のサンプルbashスクリプトの断片です。
#!/bin/bash -x
# force tput to use the ansi terminal capabilities
export TERM=ansi
# Margin settings
top=18
bottom=18
left=1.6
right=1.6
pagesize=A4
fontsize=30px
# Text color variables
R=$(tput setaf 1) # Red
G=$(tput setaf 2) # Green
C=$(tput setaf 6) # Cyan
Y=$(tput setaf 3) # Yellow
P=$(tput setaf 5) # Purple
RESET=$(tput sgr0) # Reset your text
# convenience functions
function bold {
tput bold
echo -n "$@"
}
function ul {
tput smul
echo -n "$@"
tput rmul
}
server_name=$(hostname)
function one() {
echo ""
echo "Kernel version on $(bold)${Y}${server_name} ${RESET}is: "
echo ""
uname -r
echo ""
}
function two() {
echo ""
echo "CPU load on ${G}${server_name}${RESET} is: "
echo ""
uptime
echo ""
}
main (){
one
two
}
main
問題/挑戦
- bashスクリプトをローカルで実行すると、次のように目的の結果が得られます。
- bashスクリプトがgitlab ciで実行されると、フォーマットは表示されません。 gitlab runerのサンプル出力を見る:
tput: terminal attributes: No such device or address
tput: terminal attributes: No such device or address
....
Kernel version on is:
4.14.296-222.539.amzn2.x86_64
CPU load on is:
追加資料:
- 次のような他のスレッドを読んでください。これ次のフラグを追加してみましたが、
PY_COLORS: '1'
まだANSIBLE_FORCE_COLORS: '1'
カラー効果はありません。