-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6fa4bb1
commit 2c5f3c6
Showing
4 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
erlang 19.0 | ||
elixir 1.3.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
machine: | ||
environment: | ||
PATH: "./bin:$HOME/.asdf/bin:$HOME/.asdf/shims:$PATH" | ||
services: | ||
- redis | ||
dependencies: | ||
pre: | ||
- if ! asdf | grep version; then git clone https://github.com/HashNuke/asdf.git ~/.asdf; fi | ||
- asdf plugin-add erlang https://github.com/HashNuke/asdf-erlang.git || true | ||
- asdf plugin-add elixir https://github.com/HashNuke/asdf-elixir.git || true | ||
- asdf install | ||
- mix local.hex --force | ||
- mix local.rebar --force | ||
- yes | mix deps.get | ||
cache_directories: | ||
- ~/.mix | ||
- ~/.asdf | ||
- deps | ||
test: | ||
override: | ||
- MIX_ENV=prod mix compile --warnings-as-errors | ||
- bin/test_suite |