Revert "Use sblint-reviewdog."

This reverts commit d5a346d6c3.
This commit is contained in:
Eitaro Fukamachi 2016-10-28 10:11:44 +09:00
parent 3e55b0e077
commit be1a4b5434

View file

@ -23,12 +23,23 @@ install:
# Install Roswell # Install Roswell
- curl -L https://raw.githubusercontent.com/snmsts/roswell/$ROSWELL_BRANCH/scripts/install-for-ci.sh | sh - curl -L https://raw.githubusercontent.com/snmsts/roswell/$ROSWELL_BRANCH/scripts/install-for-ci.sh | sh
# Install reviewdog
- if [ "$REVIEWDOG" ]; then
mkdir -p ~/go/bin;
curl -L https://github.com/haya14busa/reviewdog/releases/download/$REVIEWDOG_VERSION/reviewdog_linux_386 > ~/go/bin/reviewdog;
chmod u+x ~/go/bin/reviewdog;
fi
# Install SBLint # Install SBLint
- if [ "$REVIEWDOG" ]; then ros install fukamachi/sblint; fi - if [ "$REVIEWDOG" ]; then ros install fukamachi/sblint; fi
# Install prove # Install prove
- ros install prove - ros install prove
cache:
directories:
- "$HOME/.roswell"
- "$HOME/.config/common-lisp"
before_script: before_script:
- ros --version - ros --version
- ros config - ros config
@ -39,4 +50,7 @@ script:
else else
run-prove t-*.asd; run-prove t-*.asd;
fi fi
- if [ "$REVIEWDOG" ]; then sblint-reviewdog; fi - >-
if [ "$REVIEWDOG" ]; then
sblint | reviewdog -efm="%f:%l:%c: %m" -diff="git diff master" -ci=travis;
fi