Skip to content

Commit

Permalink
Add thespian logs to ci
Browse files Browse the repository at this point in the history
Closes #129
  • Loading branch information
hub-cap committed Apr 21, 2020
1 parent f375290 commit e053f3e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,23 @@ set -e
set -o pipefail

function build {
if [[ ! -d ${RALLY_HOME} ]] ; then
echo "Rally home [${RALLY_HOME}] is not set or does not exist."
exit 1
fi

export PATH="$HOME/.pyenv/bin:$PATH"
export TERM=dumb
export LC_ALL=en_US.UTF-8
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"

export THESPLOG_FILE="${THESPLOG_FILE:-${RALLY_HOME}/.rally/logs/actor-system-internal.log}"
# this value is in bytes, the default is 50kB. We increase it to 200kiB.
export THESPLOG_FILE_MAXSIZE=${THESPLOG_FILE_MAXSIZE:-204800}
# adjust the default log level from WARNING
export THESPLOG_THRESHOLD="INFO"

make prereq
make install
make precommit
Expand Down

0 comments on commit e053f3e

Please sign in to comment.