mirror of
https://github.com/vale981/lack
synced 2025-03-04 17:01:41 -05:00
parent
3e55b0e077
commit
be1a4b5434
1 changed files with 15 additions and 1 deletions
16
.travis.yml
16
.travis.yml
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue