mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2025-12-08 15:32:31 +01:00
Set up circle ci
This commit is contained in:
parent
468b7403e9
commit
39762ecd97
4 changed files with 19 additions and 0 deletions
12
circle.yml
Normal file
12
circle.yml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
machine:
|
||||
environment:
|
||||
ZSH_VERSIONS: 5.0.8 5.1.1 5.2 5.3.1
|
||||
|
||||
dependencies:
|
||||
pre:
|
||||
- for v in $(echo $ZSH_VERSIONS | awk "{ for (i=$((1+CIRCLE_NODE_INDEX));i<=NF;i+=$CIRCLE_NODE_TOTAL) print \$i }"); do wget https://sourceforge.net/projects/zsh/files/zsh/$v/zsh-$v.tar.gz && tar xzf zsh-$v.tar.gz && cd zsh-$v && ./configure && sudo make install || exit 1; done
|
||||
|
||||
test:
|
||||
override:
|
||||
- for v in $(echo $ZSH_VERSIONS | awk "{ for (i=$((1+CIRCLE_NODE_INDEX));i<=NF;i+=$CIRCLE_NODE_TOTAL) print \$i }"); do TEST_ZSH_BIN=/usr/local/bin/zsh-$v make test || exit 1; done:
|
||||
parallel: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue