Skip to content

Commit

Permalink
travis removed for circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
izelnakri committed Dec 7, 2016
1 parent 77e1f4c commit f3050f4
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

28 changes: 28 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
machine:
environment:
PATH: "$HOME/.asdf/bin:$HOME/.asdf/shims:$PATH"
MIX_ENV: test

dependencies:
cache_directories:
- ~/.asdf
- deps
- _build
pre:
- if ! asdf | grep version; then git clone https://github.com/asdf-vm/asdf.git ~/.asdf; fi
- asdf plugin-add erlang https://github.com/asdf-vm/asdf-erlang.git || true
- asdf plugin-add elixir https://github.com/asdf-vm/asdf-elixir.git || true
- echo "erlang 19.0" >> .tool-versions
- echo "elixir 1.3.1" >> .tool-versions
- asdf install
- mix local.hex --force
- mix local.rebar --force
override:
- mix deps.get
- mix deps.compile
- cd example && mix deps.get
- cd example && mix deps.compile
test:
override:
- mix test
- cd example && mix test
6 changes: 6 additions & 0 deletions priv/raw_repo/migrations/20160619190936_add_empty.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
defmodule RawRepo.Migrations.Empty do
use Ecto.Migration

def change do
end
end

0 comments on commit f3050f4

Please sign in to comment.