Procházet zdrojové kódy

Set up circle ci

pull/221/head
Eric Freese před 7 roky
rodič
revize
39762ecd97
4 změnil soubory, kde provedl 19 přidání a 0 odebrání
  1. +4
    -0
      .editorconfig
  2. +1
    -0
      Makefile
  3. +2
    -0
      README.md
  4. +12
    -0
      circle.yml

+ 4
- 0
.editorconfig Zobrazit soubor

@ -12,3 +12,7 @@ indent_style = space
[*.rb]
indent_style = space
indent_size = 2
[*.yml]
indent_style = space
indent_size = 2

+ 1
- 0
Makefile Zobrazit soubor

@ -32,4 +32,5 @@ clean:
.PHONY: test
test: all
@test -n "$$TEST_ZSH_BIN" && echo "Testing zsh binary: $(TEST_ZSH_BIN)" || true
bundle exec rspec $(TESTS)

+ 2
- 0
README.md Zobrazit soubor

@ -4,6 +4,8 @@ _[Fish](http://fishshell.com/)-like fast/unobtrusive autosuggestions for zsh._
It suggests commands as you type, based on command history.
[![CircleCI](https://circleci.com/gh/zsh-users/zsh-autosuggestions.svg?style=svg)](https://circleci.com/gh/zsh-users/zsh-autosuggestions)
<a href="https://asciinema.org/a/37390" target="_blank"><img src="https://asciinema.org/a/37390.png" width="400" /></a>

+ 12
- 0
circle.yml Zobrazit soubor

@ -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

Načítá se…
Zrušit
Uložit